question archive Assume that the following two classes are compiled and run
Subject:Computer SciencePrice: Bought3
Assume that the following two classes are compiled and run. What is the output? You don't have to provide a formal trace - you just have to show the output. But to determine the output, you'll need to informal trace either in your head or with a few notes. You are encouraged to verify your answer by running the program on a computer. Running the program is for verification purposes, not for coming up with the answer in the first place. You should be able to understand how the program works by just examining its code. public class ExampleDriver { public static void main(String[] args) { Example example = new Example(); example.display(); } } // end ExampleDriver class public class Example { private int x = 40 public Example() { this(25); System.out.println(this.x); } public Example(int x) { System.out.println(this.x); System.out.println(x); this.x = 10; x = 50; } public void display() { int x = 30; display(x); System.out.println(x); } public void display(int x) { x += 15; System.out.println(x); } // end Example class