In exception handling, multiple catch blocks can be provided as long as each catch block catches ____.

A. an error
B. a unique data type
C. a unique exception
D. at least one exception

Answer: B

Computer Science & Information Technology

You might also like to view...

There is no Save button in the ________ Toolbar in the Excel Web App

Fill in the blank(s) with correct word

Computer Science & Information Technology

int counter = 0;while (counter < 100){     Console.WriteLine(counter);     counter++;} The last value printed with the above program segment is ____.

A. 0 B. 1 C. 99 D. 100

Computer Science & Information Technology