InterviewSolution
Saved Bookmarks
| 1. |
Select the method which returns the number of bytes from the array buffer:(a) void WriteByte(byte value)(b) int Write(byte[] buffer, int offset, int count)(c) write()(d) none of the mentioned |
|
Answer» Correct option is (b) int Write(byte[] buffer, int offset, int count) Best explanation: Writes a subrange of count bytes from the array buffer, beginning at buffer[offset], returning the number of bytes written. |
|