Multiple Choice
[C++11] 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.
Correct Answer:

Verified
Correct Answer:
Verified
Q18: Each standard library has a corresponding:<br>A) Function.<br>B)
Q19: C++11's unsigned long long int type (which
Q20: Which of the following is not included
Q21: A variable that can have values only
Q22: A function prototype does not have to:<br>A)
Q24: All of the following are true of
Q25: Recursion is to the base case as
Q26: Overloaded functions must have:<br>A) Different parameter lists.<br>B)
Q27: Labels are the only identifiers with:<br>A) Function
Q28: Which of the following C++ Standard Library