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

Computer Science & Information Technology

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; } }

Computer Science & Information Technology

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.

Computer Science & Information Technology

There are ____ value(s) used for the coords attribute of a circle shape.

A. two B. three C. four D. one

Computer Science & Information Technology

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).

Computer Science & Information Technology