21.
What happens if an exception is thrown inside a 'catch' block in C++?

23.
Which of the following statements about exception handling in C++ is correct?

24.
What is the purpose of the 'std::exception_ptr' class in C++ exception handling?

25.
How do you catch multiple exceptions of different types in C++?

27.
What is the purpose of the 'std::terminate' function in C++?

28.
What is the purpose of the 'nothrow' parameter in the 'new' operator in C++?

29.
How do you handle exceptions thrown from constructor initialization lists in C++?

30.
What is the purpose of the 'std::bad_function_call' class in C++ exception handling?