In the catch block below, what is e?
```
catch (DivideByZeroException e)
{
Console.WriteLine(e);
}
```
a) The type of the exception being caught
b) The name of catch block’s exception parameter
c) A finally block
d) An exception handler
b) The name of catch block’s exception parameter
You might also like to view...
A file extension for a theme template is:
A) .tmex. B) .thex. C) .thms. D) .thmx.
Imagine that you are working for a software company, writing a program that will control air traffic at major airports. Management is pressuring you to complete the program on schedule, but you know that remaining bugs in the software might cause the program to fail under certain circumstances. What portions of the ACM Code of Ethics would address this situation? According to the code, how should you react to the situation?
What will be an ideal response?