InterviewSolution
Saved Bookmarks
| 1. |
Which class among the following makes incorrect assumptions?(a) LineNumberInputStream(b) LineNumberReader(c) LineReader(d) LineBuffer |
|
Answer» Right option is (a) LineNumberInputStream Easy explanation - The LineNumberInputStream class makes false assumptions. The false assumption is that it assumes, all the byte data is a character. Which is actually not the case, instead the character have one byte memory space. |
|