Q. What will be the output of the following PHP code ?
Code:
<?php
define("FIRST_NAME", "Ajit");
define("LAST_NAME", FIRST_NAME);
echo FIRST_NAME;
echo LAST_NAME;
?>
β
Correct Answer: (D)
AjitAjit