Home / C# Programming / Enumerations :: Discussion

Discussion :: Enumerations

  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.

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

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment