Programming Languages C# Objective
Mar 07, 2013

Which is the correct output for the C#.NET code?

enum color

{

    red,

    green,

    blue 

}

color c; 

c = color.red; 

Console.WriteLine(c);

Choose the correct answer:
A) red
B) 1
D) -1
Detailed Explanation

Option A is the right answer.

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback