> To read in an entire line of input from the user, it is necessary to use the next method of the Scanner class.?

To read in an entire line of input from the user, it is necessary to use the next method of the Scanner class.?

Posted at: 2014-12-18 
False, you'd use nextLine()

By default, the scanner reads to the next white space. Then you have to use the .next() /.nextint() / etc., to pull in the next integer/string.