C# Indexers and Exceptions Mcqs

Our collections of Multiple choice questions and answers focuses on study of C# Indexers and Exceptions. These questions are chosen from a collection of most authoritative and best reference books on C# Indexers and Exceptions. Our aim is to prepare an individual for competitive exams like NTS, GAT, ECAT, University and College entrance exams and various tests and job interviews. One should practice our Mcqs to assimilate C# Indexers and Exceptions comprehensively.

  1. Home
  2. »
  3. Languages
  4. »
  5. Programming Languages Mcqs
  6. »
  7. C# Programming Mcqs
  8. »
  9. Indexers and Exceptions Mcqs
  10. »
  11. Page 3

31.
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

32.
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.

33.
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.

34.
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

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

-3, -2, -1

-3, 0, 1

0, 1, 2

Red, green, blue

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

The program will output a value 11.

The program will output a value 1.

The program will output a value 2.

The program will report an error since an enum element cannot be assigned a value outside the enum declaration.

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

2, 11

1, 11

2, 6

1, 5

39.
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.

1, 2, 5

1, 4

3, 5

2, 3, 4

40.
Which of the following statements is correct about the C#.NET code snippet given below?
enum color : byte
{
    red = 500,
    green = 1000,
    blue = 1500
}

Byte values cannot be assigned to enum elements.

Enum elements should always take successive values.

Since 500, 1000, 1500 exceed the valid range of byte compiler will report an error.

Enum must always be of int type.

41.
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 ]);

Red

0

1

-1

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

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().

 namespace McqsMentorConsoleApplication
( 
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, 2, 3

2, 3, 4

3, 4

4, 5

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

Enum is a reference type.

Enum is a value type.

Whether it a value type or a reference type depends upon size.

Whether it a value type or a reference type depends upon a Project Setting made in Visual Stiiclio.NET.

44.
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.

1, 3, 4

2, 5

3, 4

2, 4, 5

45.
Choose the correct statement among the followings?

Indexers are location indicators

Indexers are used to access class objects

Indexer is a form of property and works in the same way as a property

All of the mentioned

0Shares
0
Scroll to Top