If the code in a method can potentially throw a checked exception, then that method must __________.

a. handle the exception
b. have a throws clause listed in the method header
c. neither of these
d. either of these

d. either of these

Computer Science & Information Technology

You might also like to view...

Which of the following is/are valid C++ identifiers?

A) department_9 B) a Very Long Variable Name C) last-name D) All of the above. E) Both A and B, but not C.

Computer Science & Information Technology

Operators should always be evaluated in what order?

A. arithmetic, logical, comparison B. arithmetic, comparison, logical C. logical, arithmetic, comparison D. logical, comparison, arithmetic

Computer Science & Information Technology