Worksheet: J2 | CS 2113 Software Engineering - Spring 2025

Worksheet: J2

Please submit your answers to the questions as comments in a J2.md markdown file you’ll be writing in this lab. To render your file, create a github repo and upload your file there – it can be viewed in your web browser.

Grading rubric and submission

When you are done, submit your J2.md file to BB.

You will be graded on the following:

Item Points
Answers are correct 100

Questions

  1. How are private and public visibility modifiers handled when fields/methods with these different visibilities are inherited from a parent class?

    From a grandparent class?

    How do classes outside the class inheritance hierarchy see (or not see) fields/methods with these different modifiers?

    Reveal Solution

  2. For the below questions, when the class Point is referenced, we are talking about the below class, which you can assume is fully implemented and working as described:

    public class Point {
       private double x,y; //the x,y fields
       public Point(double x,double y); //construct a point from an x,y
       public Point(Point other); //construct a point from another point
       public double getX(); //return the x component
       public double getY(); //return the y component
       public double setXY(double x, double y); //sets the x and y fields
       public String toString(); //return the string representation
       private double sum_x_y(); // Returns the sum of X and Y
    }
    
    

    Say we want to make a class that extends Point with a method that can reflect a point across the X and Y axis:

    public class CustomPoint extends Point {
        public void reflect(); // Reflects point
    }
    

    Which of the following implementations achieves this?

        // Option 1
        public void reflect() {
            x = -x;
            y = -y;
        }
    
        // Option 2
        public void reflect() {
            this.x = -this.x;
            this.y = -this.y;
        }
    
        // Option 3
        public void reflect() {
            this = Point(-x,-y);
        }
        
        // Option 4
        public void reflect() {
            double x = -this.getX();
            double y =-this.getY();
            this.setXY(x,y);
        }
        
        // Option 5
        public void reflect() {
            x = -this.getX();
            y = -this.getY();
        }
    

    Explain why.

    Reveal Solution

  3. If we add this constructor to CustomPoint:

        public CustomPoint() {
            setXY(10, 10); // Line 1
            super(0, 0); // Line 2
        }
    

    …and then run this program, what is the output?

        public static void main(final String args[]) {
            CustomPoint p = new CustomPoint();
            System.out.println(p.toString());
        }
    

    Reveal Solution

  4. What if we switch line 1 and 2 in the previous question?

    Reveal Solution

  5. If we want to override sum_x_y in our custom point, but first reflect the point before returning the sum, which of the following implementations are valid? (Note: assume that reflect has a valid implementation)

        //Option 1
        public double sum_x_y() {
            this.reflect();
            return super.sum_x_y();
        }
    
        //Option 2
        public double sum_x_y() {
            this.reflect();
            return this.getX() + this.getY();
        }
    
        //Option 3
        public double custom_sum_x_y() {
            this.reflect();
            return super.sum_x_y();
        }
    
        //Option 4
        public double custom_sum_x_y() {
            this.reflect();
            return this.getX() + this.getY();
        }
    
    

    Explain your answer.

    Reveal Solution

  6. What is the point of the protected modifier? Why do we have it and how does it work in terms of inheritance?

    Reveal Solution

  7. Consider the following class

    
    public class Racecar {
    
        private int number; 
        private Driver driver; //assume implemented properly
        protected String sponsor = null;
        public Racecar(int n, Driver d) {
            number = n;
            driver = d;
        }
    
        public String toString() {
            return "Car #" + number + " Driver: " + driver;
        }
        
        protected addSponsor(String sp) {
            sponsor = sp;
        }
    }
    

    Suppose we want to extend this to a FormulaOne class which has a make, e.g., Mercedes. Complete the constructor and toString() method.

    
    public class FormulaOne extends Racecar {
        private String make;
    
        //TODO
    }
    

    Reveal Solution

  8. Using the Racecar and FormulaOne classes above, if we had a main method in a different class than either of those,

    
    public static void main(String args[]) {
    
    
       Racecar r = new Racecar(/* ... some args .. */);
       r.addSponsor("Home Depot"); //<--A
    
       FormulaOne f1 = new FormulaOne(/* ... some args .. */);
       f1.addSponsor("Home Depot"); //<--B
         
    }
    

    Does the code work at mark A or mark B or neither? Explain.

    Reveal Solution

  9. Consider the UML diagram from the notes. Expand this to include an intern. An intern is like an employee, has a manager, unit, but has an expiration on their employment. How does this fit into the UML diagram?

    Include your UML diagram and explanation below in this markdown file.

    Reveal Solution

  10. Give an example of a case where it would make sense to have a public static field.

    Reveal Solution