Vidyalelo
C# Programming · Q51

File Handling and Input Output in C Sharp

Programming · C# Programming · question 51

Q51

Which among the following attempts to read up to count bytes into buffer starting at buffer[offset], returning the number of bytes successfully read?

A.
int ReadByte()
B.
int Read(byte[] buffer, int offset, int count)
Answer
C.
Void WriteByte(byte value)
D.
None of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board