Enumeration
Define the term Enumeration?
Expert
Enumeration can be defined as a value type which consists of set of named values. These values are constants and are termed as enumerators. Enumeration type is declared using the keyword “enum”. Each enumerator in an enumeration is linked with an underlying type that is already set, by default.
The following explains an example to show the creation of an enumeration to store different varieties of fruits:
enum Fruits {Mango, orange, Apple, Guava};
In above example, an enumeration “Fruits” is created, where number Mango is associated with0, number Apple with1, number Orange with2, and number Guava with3. Enumeration can be accessed by using these values.
Explain the types of deployment models which are used in the cloud?
Write down the benefit of packaging over xcopy in the .NET?
Write down some of the layout Panels of WPF?
Write down some of the benefits of XAML?
List the various techniques to authenticate the user in ASP.NET?
Specify some of the situations in which AJAX cannot be used.
Name the tool that can transform Visual basic old version to the .NET compatibility version?
Explain the XmlWriter class.
Write about the classes are supported to make an XML DOM?
Name the latest features that added in .NET Framework 4.0?
18,76,764
1958413 Asked
3,689
Active Tutors
1419965
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!