Multiple choice .net asp

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 using String.Format-style syntax, while Response.Write() only writes raw strings. Response.Output.Write() allows you to write formatted output with parameters like Response.Output.Write("Hello {0}", name), making it more flexible for dynamic content generation. The other options (flush, buffer, stream) are not the key differences.