-
What will be the output of the following PHP code ?
<?php
define("ATTENTION", "Interview mania is good website.", true);
echo ATTENTION;
echo "\n";
echo ATTENTION;
?>
-
- Error
- Interview mania is good website.
- Interview mania is good website.
Interview mania is good website. - Nothing
- None of these
Correct Option: C
Since the third parameter is true in define("ATTENTION", "Interview mania is good website.", true) is true ATTENTION becomes case insensitive.