explain System.out.println
Answer Posted / sachin
System.out.println();
System - System is class
Out - Is an object of output stream (PrintStream class)
which is static and defined in System class.
Println()- Method from PrintStream class which use to write
output
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are features of java?
What is the difference between quicksort & mergesort? When should they be used? What is their running time?
What is a conditional equation?
What is default exception handling in java?
What is double checked locking in singleton?
what is use of functional interface in java 8?
What is the return type of the main method?
What package is math in java?
What is an exception? difference between Checked and Unchecked exception in Java
What is private static class in java?
Can we override constructors in java?
What does singleton mean in java?
What is a null point?
What is the difference between preemptive scheduling and time slicing in java programming?
If an object reference is set to null, will the garbage collector immediately free the memory held by that object?