Multiple choice asp

Thinking Question: ASP code can be written to show the current time. Is it possible to show a live, ticking clock using ASP?

  1. Yes, ASP will pull the time from the web server and feed it to the client browser.

  2. No, once the ASP script has finished executing, it cannot do any more after the page reaches the client browser.

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

ASP is a server-side technology. It generates HTML and sends it to the client. Once the page is sent, the server-side script stops running. To create a live ticking clock, client-side code (like JavaScript) is required to update the UI every second.