Exception handling helps you create ________ programs.

a. high-performance
b. logic-error-free
c. fault-tolerant
d. compilation-error-free

c. fault-tolerant

Computer Science & Information Technology

You might also like to view...

Which of the following contains host records for a domain?

a. DNS b. WINS c. Linux server d. UNIX Web clients

Computer Science & Information Technology

Analyze the following code:

``` public class Test { private int t; public static void main(String[] args) { int x; System.out.println(t); } }``` a. The variable t is not initialized and therefore causes errors. b. The variable t is private and therefore cannot be accessed in the main method. c. t is non-static and it cannot be referenced in a static context in the main method. d. The variable x is not initialized and therefore causes errors. e. The program compiles and runs fine.

Computer Science & Information Technology