Moderate

Difference between Response.Write() and Response.Output.Write() ?

Correct answer: A. Response.Output.Write() allows you to write formatted output

  • A. Response.Output.Write() allows you to write formatted output
  • B. Response.Output.Write() allows you to stream output
  • C. Response.Output.Write() allows you to buffer output
  • D. Response.Output.Write() allows you to flush output

Explanation

Response.Output is a TextWriter, so its Write method supports formatted output through format strings and arguments. Response.Write is a simpler convenience method for writing content to the response.

Last updated

Practise Web and Mobile Development

268 free Web and Mobile Development MCQs from Software Engineering, each with the correct answer and an explanation. Unlimited attempts, no account needed.

Exams that ask Software Engineering questions like this

Software Engineering is on this paper prepared for on TestUstad, and all of them draw the same bank, so this question is worth knowing for it.

Related questions