104k views
3 votes
Suppose that the class Mystery is derived from the class Secret. Consider the following statements.

Secret mySecret = new Secret();
Secret secRef;
Mystery myMystery = new Mystery();
Mystery mysRef;
secRef = myMystery;
Which of the following statements is legal in Java?
(i) mysRef = (Mystery) mySecret;
(ii) mysRef = (Mystery) secRef;

User Melena
by
7.8k points

1 Answer

6 votes

Answer:

The answer to the following question is the option "(ii)".

Step-by-step explanation:

In the java code firstly we create the derived class (Secret) object and reference variable that is mySecret and secRef. Then we create a base class (Mystery) object and reference variable that is myMystery and mysRef. In the derived class reference variable that holds the base class object. So the legal statement in java is "mysRef = (Mystery) secRef". In this code, the reference variable of the base class holds the value of the base class object and derived class reference variable.

User Argus
by
8.0k points