InterviewSolution
Saved Bookmarks
| 1. |
StringReader handles _____________________(a) Any character stream(b) A character stream whose source is an array(c) A character stream whose source is character array(d) A character stream whose source is String only |
|
Answer» Right answer is (d) A character stream whose source is String only Explanation: The StringReader can only work with the string type data. Even if a character array is given, it might produce some errors in code. Hence only the string values can be handled properly. |
|