InterviewSolution
Saved Bookmarks
| 1. |
Which of these stream contains the classes which can work on character stream?(a) InputStream(b) OutputStream(c) Character Stream(d) All of the mentioned |
|
Answer» The correct answer is (c) Character Stream Easiest explanation: InputStream & OutputStream classes under byte stream they are not streams. Character Stream contains all the classes which can work with Unicode. |
|