0
what is System.out.prinln("");
6 Answers
0
"
0
Its a predefined function for printing a statement and it belings to i/o package
0
hmmm. In simple terms, it prints out (to the console) what you put in between the parentheses
0
I accept all answers above proved here is my explanation System is a class which has out method for printing values on console
0
Prints thing u want on another line:
Thats basic difference between print & println
0
System is class
out is file stream
println is function in System class which takes objects as strings
System.out.println("java");
will print java