The _________ statement is used to rethrow an exception from inside a catch block.

a) rethrow
b) throw
c) try
d) catch

Answer: B

Computer Science & Information Technology

You might also like to view...

Write a method called powersOfTwo that prints the first 10 powers of 2 (starting with 2). The method takes no parameters and doesn't return anything.

``` public void powersOfTwo() { int base = 2; for (int power = 1; power <= 10; power++) System.out.println(Math.pow(base,power)); } ```

Computer Science & Information Technology

A 300 PPI image is being used at 227% in your InDesign document. Describe the steps you would take, when editing the image to keep the resolution at 300 ppi, while changing the scale to 227%.

What will be an ideal response?

Computer Science & Information Technology