InterviewSolution
Saved Bookmarks
| 1. |
The method used to write a single byte to an output stream?(a) void WriteByte(byte value)(b) int Write(byte[] buffer ,int offset ,int count)(c) write()(d) none of the mentioned |
|
Answer» Right choice is (a) void WriteByte(byte value) The explanation is: Writes a single byte to an output stream. |
|