Which Among The Following Differentiates Enum In Cnet From Enum #340
Which among the following differentiates enum in C#.NET from enum in C language?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Object Oriented Concepts - Enumerations - Quiz No.2.
Which among the following differentiates enum in C#.NET from enum in C language?
C is strictly a typed language, C#.NET also is a strictly typed language
In C, language variables of enum types can be used interchangeably with integers using type casts while enum variables cannot be used as a normal integers in C#.NET
None of the mentioned
All of the mentioned