+1 vote
119 views
in C# by (61.8k points)
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

I got this question in semester exam.

Query is from Introduction of Stream Classes topic in division Console I/O Operations and Stream Classes of C#

1 Answer

0 votes
ago by (65.4k points)

The correct answer is:

(b) int Write(byte[] buffer, int offset, int count)

Explanation:

The method Write(byte[] buffer, int offset, int count) is part of many stream classes in C# and it writes a block of data from a byte array to the stream.

  • The count parameter specifies the number of bytes to write, which effectively tells how many bytes are involved in the operation.
  • The method returns the number of bytes actually written, which corresponds to the number of bytes from the array buffer that are written to the stream.

The other options do not return the number of bytes from the array buffer:

  • (a) void WriteByte(byte value): This method writes a single byte to the stream, and it does not return any value.
  • (c) write(): This is not a valid method in C# Stream classes by itself, as C# uses specific methods like Write() and WriteByte(), etc.

Thus, (b) is the correct choice.

Related questions

Welcome to TalkJarvis QnA, a question-answer community website for the people by the people. On TalkJarvis QnA you can ask your doubts, curiosity, questions and whatever going in your mind either related to studies or others. Experts and people from different fields will answer.

Most popular tags

biology – class 12 biology – class 11 construction & building materials chemistry – class 12 electronic devices & circuits network theory data structures & algorithms ii cell biology ic engine insurance finance money computational fluid dynamics engineering physics i discrete mathematics chemistry – class 11 aerodynamics casting-forming-welding i engineering mathematics operating system casting-forming-welding ii engineering drawing mysql engineering geology digital circuits wireless mobile energy management electrical measurements digital communications cyber security analytical instrumentation embedded systems electric drives cytogenetics advanced machining computer fundamentals life sciences basic civil engineering iot design of electrical machines physics – class 12 applied chemistry dairy engineering basic chemical engineering cloud computing microprocessor bioinformatics aircraft design aircraft maintenance software engineering drug biotechnology digital signal processing biochemistry data structures & algorithms i automotive engine design avionics engineering material & metallurgy energy engineering cognitive radio unix electrical machines biomedical instrumentation object oriented programming electromagnetic theory power electronics analog communications bioprocess engineering civil engineering drawing engineering metrology physics – class 11 mathematics – class 12 engineering chemistry i basic electrical engineering unit processes mongodb signals and systems cryptograph & network security hadoop mathematics – class 11 engineering physics ii html control systems engineering mechanics antennas analog circuits computer network java sql server javascript concrete technology chemical process calculation artificial intelligence design of steel structures c++ database management computer architecture engineering chemistry ii corrosion engineering chemical technology dc machines
...