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
How are variables stored in memory?
Difference between Preemptive scheduling vs. Time slicing?
What are the topics in advance java?
Can we use catch statement for checked exceptions?
Explain the difference between extends thread vs implements runnable in java?
Can we assign integer value to char in java?
How do you compare arrays in java?
Write a method to check if input string is palindrome?
I want to persist data of objects for later use. What is the best approach to do so?
Describe the various concepts related to object oriented programming (oop).
Explain java thread life cycle.
Explain about complier design(phases)
what is the constructor and how many types of constructors are used in java?
What is arrays aslist in java?
Is string a wrapper class?