Answer the following statements true (T) or false (F)

1. A thrown exception for which there is no matching catch block will cause the execution of the program to abort.
2. At most one catch block may be attached to a single try block.
3. A program may not contain a "regular" version of a function and a template version of the function at the same time.
4. There is no difference between defining an object of an ordinary class and an object of a template class.
5. The Standard Template Library (STL) contains templates for useful algorithms and data structures.

1. TRUE
2. FALSE
3. FALSE
4. FALSE
5. TRUE

Computer Science & Information Technology

You might also like to view...

Which of the following is an inline device that checks all packets?

A. Host-based intrusion detection system B. Statistical anomaly C. Network intrusion detection system D. Personal software firewall

Computer Science & Information Technology

If you assign int x = 0.75;, what actually will be stored in memory?

A. 0 B. 0.750000 C. 1 D. You will get a compiler error.

Computer Science & Information Technology