Open In App

C++ | Exception Handling | Question 3

Like Article
Like
Save
Share
Report

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 occurred, 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
Please comment below if you find anything wrong in the above post


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads