Multiple Choice
Problems using switch logic to deal with many objects of different types do not include:
A) Forgetting to include an object in one of the cases.
B) Having to update the switch statement whenever a new type of object is added.
C) Having to track down every switch statement to do an update of object types.
D) Not being able to implement separate functions on different objects.
Correct Answer:

Verified
Correct Answer:
Verified
Q4: [C++11] In C++11, you can tell the
Q5: Which of the following statements about polymorphism
Q6: Which of the following statements about virtual
Q7: Which of the following is not allowed?<br>A)
Q8: Virtual functions must:<br>A) Be overridden in every
Q10: An abstract class will:<br>A) Have all zero
Q11: Downcasting enables:<br>A) A derived-class object to be
Q12: Which of the following statements is true?<br>A)
Q13: The main difference between a pure virtual
Q14: Which of the following would not be