Multiple choice What is the meaning of following catch block? catch(...) { Statements; } Handle any exception that is not caught by other handlers Handle all I/O exceptions Handle all exceptions None of these Reveal answer Fill a bubble to check yourself A Correct answer Explanation The ellipsis (...) is used by catch statement to handle all those exceptions that are not caught by other handlers.