C# Programming - Enumerations

Why should I learn to solve C# Programming questions and answers section on "Enumerations"?

Learn and practise solving C# Programming questions and answers section on "Enumerations" to enhance your skills so that you can clear interviews, competitive examinations, and various entrance tests (CAT, GATE, GRE, MAT, bank exams, railway exams, etc.) with full confidence.

Where can I get the C# Programming questions and answers section on "Enumerations"?

IndiaBIX provides you with numerous C# Programming questions and answers based on "Enumerations" along with fully solved examples and detailed explanations that will be easy to understand.

Where can I get the C# Programming section on "Enumerations" MCQ-type interview questions and answers (objective type, multiple choice)?

Here you can find multiple-choice C# Programming questions and answers based on "Enumerations" for your placement interviews and competitive exams. Objective-type and true-or-false-type questions are given too.

How do I download the C# Programming questions and answers section on "Enumerations" in PDF format?

You can download the C# Programming quiz questions and answers section on "Enumerations" as PDF files or eBooks.

How do I solve C# Programming quiz problems based on "Enumerations"?

You can easily solve C# Programming quiz problems based on "Enumerations" by practising the given exercises, including shortcuts and tricks.

Exercise : Enumerations - General Questions
  • Enumerations - General Questions
1.
Which of the following statements are correct about an enum used inC#.NET?
  1. By default the first enumerator has the value equal to the number of elements present in the list.
  2. The value of each successive enumerator is decreased by 1.
  3. An enumerator contains white space in its name.
  4. A variable cannot be assigned to an enum element.
  5. Values of enum elements cannot be populated from a database.
1, 2
3, 4
4, 5
1, 4
Answer: Option
Explanation:
No answer description is available. Let's discuss.

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 
}
Variables cannot be assigned to enum elements.
Variables can be assigned to any one of the enum elements.
Variables can be assigned only to the first enum element.
Values assigned to enum elements must always be successive values.
Values assigned to enum elements must always begin with 0.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

3.
Which of the following statements is true about an enum used in C#.NET?
An implicit cast is needed to convert from enum type to an integral type.
An enum variable cannot have a public access modifier.
An enum variable cannot have a private access modifier.
An enum variable can be defined inside a class or a namespace.
An enum variable cannot have a protected access modifier.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

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);
1
-1
red
0
color.red
Answer: Option
Explanation:
No answer description is available. Let's discuss.

5.
Which of the following statements are correct about an enum used inC#.NET?
  1. To use the keyword enum, we should either use [enum] or System.Enum.
  2. enum is a keyword.
  3. Enum is class declared in System.Type namespace.
  4. Enum is a class declared in the current project's root namespace.
  5. Enum is a class declared in System namespace.
1, 3
2, 4
2, 5
3, 4
Answer: Option
Explanation:
No answer description is available. Let's discuss.