C Plus Plus Miscellaneous - Study Mode
[#351] What is the purpose of the const keyword in C++?
Correct Answer
(D) To specify that a variable's value cannot be changed once initialized
[#352] What does RAII stand for in C++?
Correct Answer
(A) Resource Acquisition Is Initialization
[#353] Which class is used to design the base class?
Correct Answer
(A) abstract class
[#354] Where does the abstract class is used?
Correct Answer
(A) base class only
[#355] Which is the best design choice for using pointer to member function?
Correct Answer
(A) Interface