IndiaBIX.com
Arithmetic Aptitude Data Interpretation
Logical Reasoning Verbal Reasoning Non Verbal Reasoning
General Knowledge
Sudoku Number puzzles Missing letters puzzles Logical puzzles Playing cards puzzles Clock puzzles
C Programming C++ Programming C# Programming Java Programming
Microbiology Biochemistry Biotechnology Biochemical Engineering
Civil Engineering Mechanical Engineering Chemical Engineering Networking Database Questions Computer Science Basic Electronics Digital Electronics Electronic Devices Circuit Simulation Electrical Enigneering Engineering Mechanics Technical Drawing
Placement Papers Group Disucssion HR Interview Technical Interview Body Language
Aptitude Test Verbal Ability Test Verbal Reasoning Test Logical Reasoning Test C Programming Test Java Programming Test Data Interpretation Test General Knowledge Test
Data Structures Operating Systems Networking DATABASE Database Basics SQL Server Basics SQL Server Advanced SQL Server 2008 JAVA Core Java Java Basics Advanced Java UNIX Unix File Management Unix Memory Management Unix Process Managemnt C Interview Questions The C Language Basics .NET Interview Questions .NET Framework ADO.NET ASP.NET Software Testing

C# Programming - Enumerations

@ : Home > C# Programming > Enumerations > General Questions

Exercise

  • General Questions
"The secret to creativity is knowing how to hide your sources."
- Albert Einstein
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.

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

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 
}

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.

3. 

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.

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

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

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.

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



© 2008-2013 by IndiaBIX™ Technologies. All Rights Reserved | Copyright | Terms of Use & Privacy Policy

Contact us: info@indiabix.com     Follow us on twitter!