Question { Accenture, 36670 }
define System.out.println(); what is the meaning!
Answer
System: System refers to current java program.
out: out refers to output device. by default it is monitor.
println: to print the specific string onto output device in
next line
System: its the class
out: its the object of the class System
println():its the method which tells the compiler to print
a new line.