How many subclasses of the Reader Class are there in Java?
D
Correct answer
Explanation
There are 6 subclasses of reader Class in Java. These are:
- BufferedReader for buffering other readers
- ChararrayReader for reading from char array
- FilterReader for reading filter streams
- InputStreamReader for reading a character stream
- PipedReader for reading from pipe
- StringReader for reading from a string
So, this is the correct answer.