+ 1
Explain the terms System, out and println used in statement System.out.println.
Please explain the terms in brief that what it is and for what it is used
1 Antwort
+ 19
Varnica Gupta
System.out.println is a Java statement that prints the argument passed, into the System.out which is generally stdout(standard output). System is a class in the java.lang package . ... The println is a method of java.io.PrintStream. This method is overloaded to print message to output destination, which is typically a console or file.