Multiple Choice
[C++11]-Which of the following statements is false?
A) An enumeration's constants have integer values.
B) An unscoped enum's underlying type is independent of its constants' values but is guaranteed to be large enough to store those values.
C) A scoped enum's underlying integral type is int, but you can specify a different type by following the type name with a colon (:) and the integral type. For example, we can specify that the constants in the enum class Status should have type unsigned int, as in enum class Status : unsigned int {CONTINUE, WON, LOST};
D) A compilation error occurs if an enum constant's value is outside the range that can be represented by the enum's underlying type.
Correct Answer:

Verified
Correct Answer:
Verified
Q37: Using the following function definition, the parameter
Q38: An activation record will be popped off
Q39: A recursive function is a function that:<br>A)
Q40: Functions can:<br>A) Be used as building blocks
Q41: All of the following are reasons to
Q43: Which of the following statements creates a
Q44: Which of the following is not included
Q45: The unary scope resolution operator is used:<br>A)
Q46: The function prototype double mySqrt(int x);<br>A) Declares
Q47: What happens when two blocks, one nested