Home / C# Programming / Enumerations :: Discussion

Discussion :: Enumerations

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

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

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment