Multiple choice asp

When writing ASP code, what are the correct delimiters to use?

  1. <!-- code -->

  2. < code >

  3. <% code >

  4. <% code %>

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

In ASP, server-side code is enclosed within <% %> delimiters. This tells the server to process the enclosed code as script rather than HTML. Option D shows the complete correct delimiter pair with both opening and closing tags.