MCQs>IT & Programming>C#>What is the value of Status.TiredAndHungry? public enum Status { Unknown = 0, Sick = 1, Tired = 2, Hungry = 4, TiredAndHungry = Tired | Hungry }
C# MCQs
What is the value of Status.TiredAndHungry? public enum Status { Unknown = 0, Sick = 1, Tired = 2, Hungry = 4, TiredAndHungry = Tired | Hungry }
Answer
Correct Answer: 6
Explanation:
Note: This Question is unanswered, help us to find answer for this one