Worksheet: J5
Worksheets are self-guided activities that reinforce lectures. They are not graded for accuracy, only for completion. Submit a file called J5.md
on BB for this assignment.
Note
Attempt to answer these questions before running the code. This will improve your ability to analyize and reason about code without an IDE or compiler. This skill we be helpful on the exams.
Questions
-
What does the following code print to the terminal?
int[] x = {}; int y = 0; System.out.println(x[y]);
-
What does the following code print to the terminal?
int[] x = {}; int y = 0; try { System.out.println("before"); System.out.println(x[y]); System.out.println("after"); } catch (Exception e){ System.out.println("there was something wrong"); }
-
Does the following program crash? What gets printed to the terminal?
int[] x = {}; int y = 0; try { System.out.println("before"); System.out.println(x[y]); System.out.println("after"); } catch (Exception e){ System.out.println("there was something wrong"); e.printStackTrace(); }
-
What does the following code print to the terminal?
int[] x = {}; int y = 0; try { System.out.println("before1"); System.out.println(x[y]); System.out.println("after1"); } catch (ArrayIndexOutOfBoundsException e){ System.out.println("there was something wrong1"); } try { System.out.println("before2"); System.out.println(x[y]); System.out.println("after2"); } catch (Exception e){ System.out.println("there was something wrong2"); } catch (ArrayIndexOutOfBoundsException e){ System.out.println("there was something wrong3"); }
-
How do you manually raise an exception in Java? Why are you allowed to do this?
-
What does the following code print to the terminal for the cases below? Assume the code compiles.
public static void main(String[] args){ int x = 3; String y = mystery(); try { System.out.println("here 1"); foo(x, y); System.out.println("here 2"); int z = 3 / 0; } catch (Exception e){ System.out.println("error 1"); } catch (ArithmeticException e){ System.out.println("error 2"); } System.out.println("here 3"); } public static void foo(int x, String y) throws ThingException{ int y_int = -4; try{ y_int = Integer.parseInt(y); check(y_int); } catch (Exception e){ System.out.println("bad y"); throw new ThingException(); } System.out.println(y_int); int z = 4 / y_int; System.out.println(y_int); } public static void check(int y){ if (y < 0) throw new ArithmeticException(); System.out.println("in check"); y = y / 0; System.out.println("end check"); }
Case 1:
mystery()
returns"1"
Case 2:mystery()
returns"0"
Case 3:mystery()
returns"oops"
-
Give an example of when you would use exception handling over an if statement.
-
Give a reason why it is not a good idea to only wrap your entire
main
method inside onetry-catch
block. -
What is the difference between a checked versus an unchecked exception?
-
How does the
Throwable
class inheritance hierarchy distinguish between checked and unchecked exceptions? -
How is I/O (input/output) related to exception handling in Java?
-
Write code that opens a file called
data.txt
and prints out its contents, line by line. -
Write code that prints
Hello World!
andHow are you?
on two separate lines of a file calleddata.txt
-
What happens if you don’t close an input/outputstream buffer in your code?