explain System.out.println
Answer Posted / indranil singha
class Indranil{
void prin(){
System.out.println("Indra");
}
}
class Indra{
static Indranil ob=new Abc();
}
class Test{
public static void main(String args[]){
Indra.ob.prin();
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is hashset ordered?
Which one will take more memory: an int or integer?
What is a parameter used for?
What is object english?
What is byte code and why is it important to java’s use for internet programming?
What are the differences between abstract class and interface?
Is java written in c?
What is assembly language?
why are wait(), notify() and notifyall() methods defined in the object class? : Java thread
what are three ways in which a thread can enter the waiting state? : Java thread
How big is a pointer?
Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?
What does jre stand for?
What are the different types of multitasking?
Is main an identifier?