Is System.out buffered or unbuffered?
I read this is an object of InputStream and PrinterStream is the type of object referenc
System.out is the "standard" output. On most operating systems that terminal io is buffered, and paging is supported.
From the Javadoc,
The "standard" output stream. This stream is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user.