explain System.out.println
Answer Posted / prateek
System is a class
out is a static member in system class, which(out) is
already an object of PrintStream class
and finally
Println() is a method defined in PrintStream class...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which keyword specify that a variable is effectively final ?
How to make a read-only class in java?
What are the types of java languages?
Do we have pointers in java?
What is static variable with example?
What are the different types of multitasking?
what is method reference in java 8?
Explain different ways of creating a thread?
What is the meaning of nullable?
Is class is a data type?
Which is the best sorting technique in java?
What is class level lock ?
When a byte datatype is used?
What are selection structures?
A non-static inner class may have object instances that are associated with instances of the class’s outer class. A static inner class does not have any object instances.