Q. What will be the output of the following PHP code ?
Code:
<?php <?php echo "Hello MCQ Buddy"; ?> ?>
β
Correct Answer: (C)
Error
Dear candidates you will find MCQ questions of PHP here. Learn these questions and prepare yourself for coming examinations and interviews. You can check the right answer of any question by clicking on any option or by clicking view answer button.
Share your questions by clicking Add Question
<?php <?php echo "Hello MCQ Buddy"; ?> ?>
<?php echo "echo "Hello MCQ Buddy""; ?>
<?php echo "Hello MCQ Buddy" ?>
<?php # echo "Hello MCQ Buddy"; echo "# Hello MCQ Buddy"; ?>
<?php $country = "India"; echo "$country"; echo "$COUNTRY"; echo "$Country"; ?
<?php Echo "Hello "; echo "MCQ "; ECHO "Buddy"; ?>
<?php print_r "Hello MCQ Buddy" ?>
<?php "Hello MCQ Buddy" ?>
<?php
$x = 10;
$y = 20;
if ($x > $y && 1||1)
print "PHP MCQ" ;
else
print "Welcome to MCQ Buddy";
?>