6) Given the classes below, show the output of the following program execution:
ID: 3737385 • Letter: 6
Question
6) Given the classes below, show the output of the following program execution: public class SmallNumberException extends Exception public class test //Sets up exception object with a particular message static public void main (Stringl args) final int MIN-0 Stringl] values- 7", "3", "this", "5" SmallNumberException (String message) super (messagel; for (int i-0;ikvalues.length:i++ try if (Integer.parselnvalues[ilkMIN) throw problem; System.out.print(Integer.parselnt(valuesli )%2+" "It catch (SmaliNumberException e) catch (NumberformatException e) Answer 7) Analyze the following code: public class Test f public static void main(String] args) int x -new int[5]; int i; for (i e; iExplanation / Answer
Question 6
Answer:
not a number
Question 7
Answer:
A) The program displays 0 1 2 3 4