Examveda

Pick out the correct answer.

A. Exceptions are not suitable for critical points in code

B. Exception are suitable for critical points in code

C. Exceptions are used when postconditions of a function cannot be satisfied

D. Throw block should be placed after try block

Answer: Option A


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it