Solved

Consider the Following Code Snippet

Question 86

Multiple Choice

Consider the following code snippet:
Coin coin1 = new Coin("dime", 0.10) ;
Coin coin2 = coin1;
Which of the following statements is NOT correct?


A) coin1 and coin2 are object references.
B) coin1 and coin2 refer to the same object.
C) coin1 and coin2 contain the same memory location.
D) coin1 and coin2 each have their own set of instance variables.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions