Multiple choice php

Which of the following tags is not a valid way to begin and end a PHP code block?

  1. <% %>

  2. <?php ?>

  3. <?= ?>

  4. <! !>

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

Standard PHP tags are , = ... ?> (short echo), and <% ... %> (ASP tags, if enabled in configuration). '' is not recognized as a PHP code block delimiter.