Look at the following class: public class CheckPoint { public void message(int x) { System.out.print(This is the

Question:

Look at the following class: 

public class CheckPoint
{
 public void message(int x)
 {
 System.out.print("This is the first version ");
 System.out.println("of the method.");
 }
 public void message(String x)
 {
 System.out.print("This is the second version ");
 System.out.println("of the method.");
 }
}
What will the following code display? 

CheckPoint cp = new CheckPoint();
Cp.message("1");
Cp.message(1); 

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: