Multiple choice technology programming languages

What's the difference between Response.Write() andResponse.Output.Write()?

  1. Response.Output.Write() allows you to flush output

  2. Response.Output.Write() allows you to buffer output

  3. Response.Output.Write() allows you to write formatted output

  4. Response.Output.Write() allows you to stream output

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Response.Output.Write() provides formatted output capabilities similar to String.Format, allowing you to write formatted strings with placeholders. Response.Write() only writes raw strings without formatting support. Options about flushing, buffering, or streaming are incorrect - both methods ultimately write to the same response stream.