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.
Specify the operating systems over which the .NET Framework runs upon?
Explain about the different services provided by the DLR to CLR.
List the types of data types that are present in .NET?
Distinguish the term Classic ASP as well as ASP.Net?
Write down the code for selecting an item in ListView control programmatically in the C#?
Describe the differences between the Server-side and Client-side code?
Distinguish between toolstrip drop-down button and toolstrip split button?
Illustrate Queues and Stacks?
Explain the function of a CustomValidator control?
Is it possible to post and access view state in the other application?
18,76,764
1922710 Asked
3,689
Active Tutors
1445633
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!