Answer:
lines 2,3 and 5 ( c )
Step-by-step explanation:
The lines that immediately flush the output buffer are : System.out.print("Two for the show\\"); . System.out.println("Three to get ready"); and System.out.flush();
making use of the new line character or printIn() statement the buffered output gets flushed therefore making autoflush true
but System.out.print() doesn't use any flush technique so we need to flush the buffered output done by the print() statement hence we choose lines 2,3,5