adplus-dvertising
frame-decoration

Question

What will be the output of the following code?
import java.awt.Point;
class Testing
{
 public static void main(String[] args)
 {
  Point p1,p2;
  p1=new Point(100,100);
  p2=p1;
  p1.x=200;
  p1.y=200;
  System.out.println(“Point 1: ” + p1.x + ”, “ + p1.y);
  System.out.println(“Point 2: ” + p2.x + ”, “ + p2.y);
 }
}

a.

Point 1: 100, 100
Point 2: 200,200

b.

Point 1: 200, 200
Point 2: 100,100

c.

Point 1: 100, 100
Point 2: 100,100

d.

Point 1: 200, 200
Point 2: 200,200

Answer: (d).Point 1: 200, 200
Point 2: 200,200

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the following code?

Similar Questions

Discover Related MCQs

Q. Is there any explicit use of pointers in java that would be applicable to objects?

Q. Can a super class object give reference to a subclass method?

Q. If a reference variable is declared final then, _________________

Q. Which of the members are referred by this pointer usually (Java)?

Q. How to refer to method of nested class?

Q. How many objects can be referenced from same variables?

Q. Java handles memory dynamically and references are deleted as soon as they are out of scope.

Q. Invoking a method on a particular object is ____________ sending a message to that object.

Q. Can reference to an object be returned from a method?

Q. What does memory allocation for objects mean?

Q. Where is the memory allocated for the objects?

Q. When is the memory allocated for an object?

Q. Using new is type safe as _______________________

Q. Which of the following function can be used for dynamic memory allocation of objects?

Q. Which keyword among the following can be used to declare an array of objects in java?

Q. When is the memory allocated for an object gets free?

Q. Which among the following keyword can be used to free the allocated memory for an object?

Q. Which function is called whenever an object goes out of scope?

Q. Which operator can be used to check the size of an object?

Q. The memory allocated for an object ____________________