System.out.println() in Java

System.out.println() is a statement in Java, it is used to print the argument passed to it. The println() method is a part of the java.io package (predefined classes and methods); it displays the result on the monitor. Usually, a method is invoked by an object name followed by a ‘.’ symbol and method name like … Read more