Question: Integer value 1 = new Integer ( 2 0 ) ; Integer value 2 = new Integer ( 2 0 ) ; if ( value

Integer value1= new Integer(20);
Integer value2= new Integer(20);
if(value1== value2){
System.out.print("equal values");
}else {
System.out.print("not equal references");
}
if(value1.equals(value2)){
System.out.print(" and equal values");
}else {
System.out.print(" and not equal references");
}
Group of answer choices
equal values and not equal references
equal values and equal values
not equal references and equal values
not equal references and not equal references

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!