explain System.out.println
Answer Posted / bindu madhavi
System is final class of java.lang package.
'out' is field of System class which is static of
type 'PrintStream'.
println() is overloaded method of PrintStream.
| Is This Answer Correct ? | 9 Yes | 17 No |
Post New Answer View All Answers
What are the parts of methodology?
What is difference between iterator and enumeration in java?
Why static functions are used?
How to convert string to char and vice versa?
What is the difference between static and global variables and also define what are volatile variables?
How does list work in java?
What is a java developer salary?
What is skeleton and stub?
When will we prefer to use set and list in java and why?
What is compareto?
What is a singleton puppy?
Can you write a java class that could be used both as an applet as well as an application?
Can you extend main method in java?
Can a method inside a interface be declared as final?
There are two classes named classa and classb. Both classes are in the same package. Can a private member of classa can be accessed by an object of classb?