Google News
logo
Java - Interview Questions
What is the difference between print() and println() method?
Both methods are used to display the results on the monitor. Print() method displays the result and then retains the cursor in the same line, next to the result. 

Println() displays the result and then throws the cursor to the next line.
Advertisement