Multiple choice .net

Because of the latency of a round-trip on the internet:

  1. the interface and code of a web form are stored in separate files.

  2. only some user actions, such as button clicks, will generate events.

  3. it is best to use server-side control.

  4. web applications should be coded in Visual Basic.

  5. None of the above.

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

Because every round-trip to the server introduces latency, web forms do not trigger a server event for every minor user action (like moving a mouse). Instead, only significant actions like button clicks or specific index changes typically trigger a postback to the server.