Exception Handling
© examsiri.com
Question : 18 of 24
Marks:
+1,
-0
Given:
And the command-line invocations:
java Input
java Input 0
Which are true? (Choose all that apply.)
class Input {
  public static void main(String[] args) {
   String s = "-";
   try {
   doMath(args[0]);
   s += "t "; /*line 6*/
  }
  finally { System.out.println(s += "f "); }
}
public static void doMath(String a) {
  int y = 7 / Integer.parseInt(a);
} }And the command-line invocations:
java Input
java Input 0
Which are true? (Choose all that apply.)
Go to Question: