Enumerated lists are identified by the reserved word ____ followed by an optional, user-selected name and a required list of one or more constants.
A. list
B. typedef
C. enumerate
D. enum
Answer: D
You might also like to view...
What is the output of the function call strange (6) given the following definition?
void strange (int n) { if (n > 1) { cout << n + 1 << “ “ << endl; strange (n-2); cout << n-1 << “ “ << endl; } }
A virtual member function of class that should not be overridden in a derived class should be declared
A) with the keyword const. B) with the keyword final. C) with symbol ! followed by the keyword override. D) as private in its class. E) as protected in its class.
There are ____ value(s) used for the coords attribute of a circle shape.
A. two B. three C. four D. one
If you precede a subquery by the ____________________ operator, the condition is true only if it satisfies one or more values produced by the subquery.
Fill in the blank(s) with the appropriate word(s).