QuizBeginner
Explicit Numeric Enum Values
Understand how auto-increment continues after an explicit numeric value.
Given `enum Status { Active = 1, Inactive, Pending }`, what is the value of `Status.Pending`?
Understand how auto-increment continues after an explicit numeric value.
Given `enum Status { Active = 1, Inactive, Pending }`, what is the value of `Status.Pending`?