What will the following code display?

```
String input = "99#7";
int number;
try
{
number = Integer.parseInt(input);
}
catch(NumberFormatException ex)
{
number = 0;
}
catch(RuntimeException ex)
{
number = 1;
}
catch(Exception ex)
{
number = -1;
}
System.out.println(number);

```

a. -1 b. 0 c. 1 d. 99


b. 0

Computer Science & Information Technology

You might also like to view...

Which is not a step for pasting layers?

A. Click the Layer Tools list arrow. B. Click the Layers panel menu button. C. Click Paste Remembers Layers to add a check mark before the command. D. Copy or cut the InDesign objects and paste them into the new document.

Computer Science & Information Technology

In the solutions below, indicate the current logical expression being evaluated according to the rules of precedence.

``` x<3 ANDx>OANDy>=1 ``` Evaluates as True

Computer Science & Information Technology

Which of the following opens the employee.txt file for output, creates a StreamWriter object, and assigns it to the outFile variable?

A. outFile = File.CreateText("F:\employee.txt") B. outFile = IO.File.CreateText("F:\employee.txt") C. outFile = File.CreateText("F:\") D. outFile = IO.File.Create("F:\employee.txt")

Computer Science & Information Technology

By default, an object's X coordinate represents its horizontal distance from the bottom right corner of the artboard.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology