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

Enumerations - General Questions

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

Which of the following statements are correct about an enum used in C#.NET?

1 An enum can be declared inside a class.

2 An enum can take Single, Double or Decimal values.

3 An enum can be declared outside a class.

4 An enum can be declared inside/outside a namespace.

5 An object can be assigned to an enum variable.

 

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

Answer: Option A

Explanation:

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

2. 

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

A. enum is a reference type.
B. enum is a value type.
C. Whether it a value type or a reference type depends upon size.
D. Whether it a value type or a reference type depends upon a Project Setting made in Visual Stiiclio.NET.
E. We can programmatically control whether it is a value type or a reference type.

Answer: Option B

Explanation:

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

3. 

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

namespace IndiabixConsoleApplication
(
class Sample
{
private enum color : int
{
red,
green,
blue
}
public void fun()
{
Console.WriteLine(color.red);
}
}
class Program
{
static void Main(string[ ] args)
{
// Use enum color here
}
}
}

1 To define a variable of type enum color in Main(), we should use the statement, color c; .

2 enum color being private it cannot be used in Main().

3 We must declare enum color as public to be able to use it outside the class Sample.

4 To define a variable of type enum color in Main(), we should use the statement, Sample.color c; .

5 We must declare private enum color outside the class to be able to use it in Main().

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

Answer: Option B

Explanation:

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

4. 

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

enum color
{
red,
green,
blue
}
color c = color.red;
Type t;
t = c.GetType();
string[ ]str;
str = Enum.GetNames(t);
Console.WriteLine(str[ 0 ]);

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

Answer: Option A

Explanation:

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

5. 

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

enum color : byte
{
red = 500,
green = 1000,
blue = 1500
}

A. byte values cannot be assigned to enum elements.
B. enum elements should always take successive values.
C. Since 500, 1000, 1500 exceed the valid range of byte compiler will report an error.
D. enum must always be of int type.
E. enum elements should be declared as private.

Answer: Option C

Explanation:

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

6. 

Which of the following statements are correct about enum used in C#.NET?

1 Every enum is derived from an Object class.

2 Every enum is a value type.

3 There does not exist a way to print an element of an enum as a string.

4 Every enum is a reference type.

5 The default underlying datatype of an enum is int.

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

Answer: Option A

Explanation:

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

7. 

Which of the following CANNOT be used as an underlying datatype for an enum in C#.NET?

A. byte
B. short
C. float
D. int

Answer: Option C

Explanation:

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

8. 

An enum can be declared inside a class, struct, namespace or interface.

A. True
B. False

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