1.

What will be the output of the following PHP code ?
<?php
define("FIRST_NAME", "Ajit");
define("LAST_NAME", FIRST_NAME);

echo FIRST_NAME;
echo LAST_NAME;
?>

A. Nothing
B. Ajit
C. FIRST_NAME LAST_NAME
D. Error
E. AjitAjit
Answer» F.


Discussion

No Comment Found

Related MCQs