What type of exception will this second Catch block handle?

The code in a Try block refers to a file and the first catch block is written as follows:
```
Catch exc As IO.IOException
```
The second catch block is written with the following clause:
Catch
(A) any exception that hasn’t already been handled
(B) an exception generated by deleting or renaming an open file
(C) this block isn’t designed to catch any exceptions
(D) this block will catch all cases where the file specified by fileName does exist


(A) any exception that hasn’t already been handled

Computer Science & Information Technology

You might also like to view...

To display data vertically rather than horizontally, replace the semicolon at the end of the command with ____.

A. \G B. \V C. % D. #

Computer Science & Information Technology

Which of the following ways to format text into columns fills the left column entirely with text and then continues the text into the next column?

A. edit column B. tabs C. tables D. columns

Computer Science & Information Technology

What is the effect of the following import statement?

``` import java.awt.*; ```

Computer Science & Information Technology

The maxOccurs attribute can have a value of ____ for unlimited occurrences of the child element.

A. unlimited B. max C. 100 D. unbounded

Computer Science & Information Technology