explain System.out.println
Answer Posted / himanshu
"System.out.prinln()"
System is a class ,Which is declare final and this extends
the object class,we can not create the object of that class.
out is a static object of outputstream class.
public static final Outputstream out
println() is method of Printstream class
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is the difference between the methods sleep() and wait()? : Java thread
What is the benefit of singleton pattern?
write a program that list all permutations of ABCDEF in which A appears before B?
what is difference between equals and ==?
How do you sort arrays in java?
What is string made of?
Explain when we should make an instance variable private.
Suppose if we have variable ' I ' in run method, if I can create one or more thread each thread will occupy a separate copy or same variable will be shared?
When should you make a function static?
What was java originally called?
Can we use string in the switch case?
What an i/o filter in java programming?
Why does java have two ways to create child threads?
What are the types of arrays in java?
Explain about method local inner classes or local inner classes in java?