Multiple Choice
If a certain object's data members need to be frequently modified by const functions, it is best to:
A) Declare the member values non-const.
B) Declare the member values mutable.
C) Use const_cast to make the member values modifiable.
D) Use static_cast to make the member values modifiable.
Correct Answer:

Verified
Correct Answer:
Verified
Q8: Assuming that ptr is a pointer to
Q9: Which operator keyword corresponds to ^?<br>A) xor<br>B)
Q10: Without the statement _, all _ statements
Q11: Which of the following is not true
Q12: Multiple inheritance means that a derived class
Q14: Which of the following declares a pointer
Q15: _ inheritance solves the problem of duplicate
Q16: _ is/are used to solve the problem
Q17: An identifier's storage class:<br>A) Determines whether an
Q18: The const_cast operator is needed when _