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 |
what is a Daemon Thread?
how to create Calculator GUI using Gridbaglayout as like as Window Calculator??????????? (Open calculator Go-->Run-->type calc-->Enter)
i want documentation of text file splitter & merger of advanced java
To make an object to begin executing as a separate thread, what method is used?
Explain the purposes of methods wait(), notify(), notifyAll ()?
difference between HashMap, Hashset and hashTable?
How do you download stubs from a Remote place?
What is private static final long serialVersionUID = 1L;
what is meant by JRMP?
What is permgen or permanent generation?
how to get value in combo for updation?
what's the main difference between unix os and linux os?