IndiaBIX
IndiaBIX
Start typing & press "Enter" or "ESC" to close
  • Home
  • Jobs
  • Results
  • Current Affairs
  • GK
  • Online Test
  • HR Interview
  • BLOG

Enumerations - General Questions (2)

  • Home
  • Computer Science & Engineering
  • C# Programming Questions and Answers
  • Enumerations - General Questions
9. 

Which of the following is the correct output for the C#.NET code snippet given below?

enum color: int
{
red,
green,
blue = 5,
cyan,
magenta = 10,
yellow
}
Console.Write( (int) color.green + ", " );
Console.Write( (int) color.yellow );

A. 2, 11
B. 1, 11
C. 2, 6
D. 1, 5
E. None of the above

Answer: Option B

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

10. 

Which of the following statements is correct about the C#.NET code snippet given below?

enum per
{
married,
unmarried,
divorced,
spinster
}
per.married = 10;
Console.WriteLine(per.unmarried);

A. The program will output a value 11.
B. The program will output a value 1.
C. The program will output a value 2.
D. The program will report an error since an enum element cannot be assigned a value outside the enum declaration.
E. The enum elements must be declared private.

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

11. 

An enum that is declared inside a class, struct, namespace or interface is treated as public.

 

A. True
B. False

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

12. 

Which of the following will be the correct output for the C#.NET code snippet given below?

enum color : int
{
red = -3,
green,
blue
}
Console.Write( (int) color.red + ", ");
Console.Write( (int) color.green + ", ");
Console.Write( (int) color.blue );

A. -3, -2, -1
B. -3, 0, 1
C. 0, 1, 2
D. red, green, blue
E. color.red, color.green, color.blue

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

13. 

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.

A. 1, 3
B. 2, 4
C. 2, 5
D. 3, 4

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

14. 

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);

A. 1
B. -1
C. red
D. 0
E. color.red

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

15. 

Which of the following statements is true about an enum used in C#.NET?

 

A. An implicit cast is needed to convert from enum type to an integral type.
B. An enum variable cannot have a public access modifier.
C. An enum variable cannot have a private access modifier.
D. An enum variable can be defined inside a class or a namespace.
E. An enum variable cannot have a protected access modifier.

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

16. 

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
}

A. Variables cannot be assigned to enum elements.
B. Variables can be assigned to any one of the enum elements.
C. Variables can be assigned only to the first enum element.
D. Values assigned to enum elements must always be successive values.
E. Values assigned to enum elements must always begin with 0.

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Discuss Workspace Report

  • 1
  • 2
  • 3

Questions & Answers

Aptitude Chemical Engineering Civil Engineering Computer Science & Engineering Current Affairs Data Interpretation Electrical & Electronics Engineering Electronics & Communication Engineering General Knowledge Logical Reasoning Mechanical Engineering Non Verbal Reasoning Verbal Ability Verbal Reasoning

Interviews

HR Interview

Jobs

Sarkari Jobs

Results

Rojgar ResultSarkari Result

Admission

Admission 2023

Admit Card

Admit Card 2023

Answer Key

Answer Key 2023
copyright
Privacy Policy
© 2025 IndiaBIX. All Rights Reserved.

Report