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

1. The following function does not throw any unhandled exceptions
void f1( ) throw ( );
2. Functions that might throw an exception must have a throw list.
3. Functions may potentially throw at most one exception.
4. If a function throws an exception, it must be caught inside that function.
5. It is legal to have a catch block with no parameter.


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 not, strictly speaking, a component of the Standard Template Library?

A. Templates B. Generic Algorithms C. Containers D. Iterators

Computer Science & Information Technology

Look up how HTTP/1.1 address this problem and summarize what you found. Answer:

When a HTTP server sends the contents of a document to a client in a response body, it uses the Content-Length header line to specify the byte length of the body. For static documents, the byte length is provided by the file system. But for dynamically generated web pages, such as those generated by a CGI script, the length must be determined at runtime, on the fly.

Computer Science & Information Technology

You download Windows apps from the Windows Store

Indicate whether the statement is true or false

Computer Science & Information Technology

The size of a primary text frame is determined by the ____.

A. page size and margins B. page size only C. margin size only D. amount of placed text

Computer Science & Information Technology