C# Programming - Enumerations
Exercise : Enumerations - General Questions
- Enumerations - General Questions
1.
Which of the following statements are correct about an enum used inC#.NET?
- By default the first enumerator has the value equal to the number of elements present in the list.
- The value of each successive enumerator is decreased by 1.
- An enumerator contains white space in its name.
- A variable cannot be assigned to an enum element.
- Values of enum elements cannot be populated from a database.
2.
Which of the following statements is correct about the C#.NET code snippet given below?
int a = 10;
int b = 20;
int c = 30;
enum color: byte
{
red = a,
green = b,
blue = c
}
3.
Which of the following statements is true about an enum used in C#.NET?
4.
Which of the following is the correct output for the C#.NET code snippet given below?
enum color
{
red,
green,
blue
}
color c;
c = color.red;
Console.WriteLine(c);
5.
Which of the following statements are correct about an enum used inC#.NET?
- To use the keyword enum, we should either use [enum] or System.Enum.
- enum is a keyword.
- Enum is class declared in System.Type namespace.
- Enum is a class declared in the current project's root namespace.
- Enum is a class declared in System namespace.
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers