Question

Which of the following statements about scoped enumerations is false?
a. A scoped enumeration is introduced by the keywords enum class, followed by a type name and a set of identifiers representing integer constants.
b. The identifiers in an enum class must be unique, but separate enumeration constants can have the same integer value.
c. By convention, you should capitalize the first letter of an enum class's name.
d. To reference a scoped enum constant, you must qualify the constant with the scoped enum's type name and the scope-resolution operator (:), as in MaritalStatus:SINGLE.

Answer

This answer is hidden. It contains 144 characters.