Multiple Choice
Which of the following correctly declares an enumerated data type named student?
A) enum student { Bill, Tom, Mary };
B) enum student { "Bill", "Tom", "Mary" };
C) int Bill = 1, Tom = 2, Mary = 3; enum student { 1, 2, 3 };
D) Any of the above 3 methods will work.
E) None of the above 3 methods will work.
Correct Answer:

Verified
Correct Answer:
Verified
Q3: If the sub-expression on the left side
Q15: The _ statement causes other program statements
Q16: A(n) _ is a variable, usually a
Q17: When an if statement is placed within
Q18: The statement<br>pass = (score >= 7) ?<br>
Q19: The following C++ test checks if the
Q22: The _ operator takes an operand and
Q23: Relational operators allow you to _ numbers.<br>A)
Q24: What will the following expression evaluate to?<br>!(
Q25: If s1 and s2 are string objects,