logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Enumerations Comments

  • Question
  • 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.


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

  • Correct Answer
  • 4, 5 


  • Enumerations problems


    Search Results


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

    • Options
    • A. byte
    • B. short
    • C. float
    • D. int
    • Discuss
    • 2. 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.

    • Options
    • A. 1, 2, 5
    • B. 1, 4
    • C. 3, 5
    • D. 2, 3, 4
    • Discuss
    • 3. Which of the following statements is true about an enum used in C#.NET?

    • Options
    • 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.
    • Discuss
    • 4. An enum that is declared inside a class, struct, namespace or interface is treated as public.

    • Options
    • A. True
    • B. False
    • Discuss
    • 5. Which of the following statements is correct about an enum used in C#.NET?

    • Options
    • 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.
    • Discuss
    • 6. 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 
      }

    • Options
    • 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.
    • Discuss
    • 7. Which of the following statements are correct about the C#.NET code snippet given below?

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

    • Options
    • A. 1, 2, 3
    • B. 2, 3, 4
    • C. 3, 4
    • D. 4, 5
    • Discuss
    • 8. An enum can be declared inside a class, struct, namespace or interface.

    • Options
    • A. True
    • B. False
    • Discuss
    • 9. Which of the following statements is correct about namespaces in C#.NET?

    • Options
    • A. Namespaces can be nested only up to level 5.
    • B. A namespace cannot be nested.
    • C. There is no limit on the number of levels while nesting namespaces.
    • D. If namespaces are nested, then it is necessary to use using statement while using the elements of the inner namespace.
    • E. Nesting of namespaces is permitted, provided all the inner namespaces are declared in the same file.
    • Discuss
    • 10. Which of the following is absolutely neccessary to use a class Point present in namespace Graph stored in library?

    • Options
    • A. Use fully qualified name of the Point class.
    • B. Use using statement before using the Point class.
    • C. Add Reference of the library before using the Point class.
    • D. Use using statement before using the Point class.
    • E. Copy the library into the current project directory before using the Point class.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment