Solved

While(nextLine = Reader.readLine() != Null)

Question 22

Essay

while(nextLine = reader.readLine() != null)
    System.out.println(nextLine);
The above loop could be used to read multiple lines from a file. Explain how this loop will execute.

Correct Answer:

verifed

Verified

The readLine() method of the BufferedRea...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions