InterviewSolution
Saved Bookmarks
| 1. |
Which of these classes is used for input and output operation when working with bytes?(a) InputStream(b) Reader(c) Writer(d) All of the mentioned |
|
Answer» Correct choice is (a) InputStream To explain I would say: InputStream & OutputStream are designed for byte stream. Reader and writer are designed for character stream. |
|