Multiple choice technology web technology

Which of the following delimiter is ASP style?

  1. NONE

  2. <% %>

  3. <? ?>

  4. <script language="php"> </script>

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

ASP-style delimiters in PHP use <% %> syntax, which was supported in older PHP versions but requires asp_tags configuration in php.ini. Option A is incorrect because ASP-style exists. Option C ?> is PHP's short tag. Option D is script tag syntax, not ASP-style.