What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference.
(Note : Pls ignore syntx errors)
public class One {
sop ("Into One--");
}
public class Two extends One{
sop ("Into Two--");
}
public class Home {
One a; Two t;
public static void main(argv[])
{
sop ("In Home--");
sop(One.a);
sop(Two.a);
sop(One.t);
sop(Two.t);
}
}
Answers were Sorted based on User's Feedback
Answer / pokuru surendra
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
One.a cannot be resolved
Two.a cannot be resolved
One.t cannot be resolved
Two.t cannot be resolved
| Is This Answer Correct ? | 2 Yes | 0 No |
When a thread terminates its processing, it enters into what state?
How to determine applet?s height and width?
Write a program on RMI and JDBC using StoredProcedure?
What is difference RMI registry and OSAgent?
What is threadfactory?
How can a dead thread be restarted?
What is the initial state, When a thread is created and started?
What exceptions are thrown by RMI?
what is difference between checked exception & unchecked exception in java?
what are JSP tags? what is difference between include action and directory?
How database connectivity in XML is achieved?
Have you used threads in Servelet?