Whats the O/p of the below code snippet ? And explain how does it imply the concept of call-by-value/call-by reference. (PS : Pls ignore syntax errors)
public class One {
public oneA(){
sop ("Into One--");}
}
public class Two extends One{
public twoT(){
sop ("Into Two--"); }
}
public class Home {
One a; Two t;
public static void main(argv[])
{
sop ("In Home--");
sop(a.oneA());
sop(t.oneA());
sop(a.twoT());
sop(t.twoT());
}
}
Answers were Sorted based on User's Feedback
Answer / mohammad aleemuddin
Compilation Error
return type required for the methods..
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / guest
sorry it ll not give any output as tthere is no object has
been created to call methods of super class
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jitendra
Cannot make a static reference to the non-static field a
| Is This Answer Correct ? | 0 Yes | 0 No |
what is jvm? how can it is useful in java?
Is java a web technology?
Every field has setter and getter methods.what is happening in this methods.
Enlist the technologies embraced in j2ee?
Give some advantages of orm (object-relational mapping)?
Why java is called portable language?
write a program, when a statement is entered, it should display in reverse order. Ex: Statement is "I am writing program in reverse order". Output should be like "order reverse in program writing am I".
Who generates bytecode in java?
Is java important for my computer?
What is element?
How long does it take to master java?
What are the tools in java?