Multiple choice technology programming languages

The print( ) method is just like println( ), except that it does not output a newline character after each call.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The print() method prints the text argument to the output stream without appending a newline at the end. In contrast, println() always appends a platform-dependent newline character sequence after writing the output.