What should be put in a try block?
1. Statements that might cause exceptions 2. Statements that should be skipped in case of an exception
(A) Only 1
(B) Only 2
(C) Both 1 and 2
Answer: (C)
Explanation: The statements which may cause problems are put in try block. Also, the statements which should not be executed after a problem accursed, are put in try block. Note that once an exception is caught, the control goes to the next line after the catch block.
Quiz of this Question
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.