Problem Statement
Which class in Java is commonly used for reading text files line by line?
Explanation
BufferedReader wrapped around a FileReader allows efficient reading of text from a file line by line, reducing I/O overhead. It’s a standard pattern for file input operations in Java.