1.

What will be the output of the following PHP code?
<?php
define("GREETING1","Welcome to interview mania!");
define("GREETING2","Welcome to interview mania!");
define("GREETING3","Welcome to interview mania!");
echo defined("GREETING");
?>

A. "GREETING Welcome to interview mania! " 3 times
B. Error
C. "Welcome to interview mania!" 3 times
D. Nothing
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs