Worksheet: J5 | CS 2113 Software Engineering - Spring 2025

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

  1. What does the following code print to the terminal?

    int[] x = {};
    int y = 0;
    System.out.println(x[y]);
    

    Reveal Solution

  2. 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");
    }
    

    Reveal Solution

  3. 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();
    }
    

    Reveal Solution

  4. 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");
    }
    

    Reveal Solution

  5. How do you manually raise an exception in Java? Why are you allowed to do this?

    Reveal Solution

  6. 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"

    Reveal Solution

  7. Give an example of when you would use exception handling over an if statement.

    Reveal Solution

  8. Give a reason why it is not a good idea to only wrap your entire main method inside one try-catch block.

    Reveal Solution

  9. What is the difference between a checked versus an unchecked exception?

    Reveal Solution

  10. How does the Throwable class inheritance hierarchy distinguish between checked and unchecked exceptions?

    Reveal Solution

  11. How is I/O (input/output) related to exception handling in Java?

    Reveal Solution

  12. Write code that opens a file called data.txt and prints out its contents, line by line.

    Reveal Solution

  13. Write code that prints Hello World! and How are you? on two separate lines of a file called data.txt

    Reveal Solution

  14. What happens if you don’t close an input/outputstream buffer in your code?

    Reveal Solution