Google News
logo
CPP - Quiz(MCQ)
How Exception handling is implemented in the C++ program?
A)
Using Error handling schedules
B)
Using Exception keyword
C)
Using try-catch block
D)
Using Exception block

Correct Answer :   Using try-catch block


Explanation : C++ provides a try-catch block to handle exceptions in your program.

Advertisement