C Plus Plus Miscellaneous - Study Mode
[#71] What is the syntax of class template?
Correct Answer
(A) template <paramaters> class declaration
[#72] What is the correct statement about lambda expression?
Correct Answer
(A) The return type of lambda expression can be neglected in some cases
[#73] In nested try-catch block, if the inner catch block gets executed, then . . . . . . . .
Correct Answer
(D) Compiler executes remaining statements of outer try-catch block and then the main() function
[#74] Which of the header file is used for array type manipulation?
Correct Answer
(D) std namespace
[#75] Which of the following is an advantage of Forward iterator over input and output iterator?
Correct Answer
(A) Can be used as both accessing and assigning iterator