Vidyalelo
PHP · all questions

Operators And Expressions
practice.

Practice every MCQ with options. Use Show answers when you want the correct option and solution.

143

Questions

1/8

Page

Pick an option on a question to see the right answer and solution.

What will be the output of the following PHP code ?
<?php
"Hello World"
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
print_r "Hello world"
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color = "red";
echo "$color";
echo "$COLOR";
echo "$Color";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
 # echo "Hello world";
 echo "# Hello world"; 
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
echo "Hello World"
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
echo "echo "Hello World"";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
<?php
echo "Hello world";
?>
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color = red;
echo "$color";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color = red;
echo "$color" . red ;
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color1 = red;
$color2 = green;
echo "color2";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color = "red";
$color = "green";
echo "$color";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "green";
echo "color2";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "green";
echo "color2";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "red";
echo "color2";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "1";
echo "color2";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color1 = "1";
$color2 = "1";
echo "color2";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "1";
$color3 = "grey"
echo "color2" . "$color3";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
echo "This", "was", "a", "bad", "idea";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
echo "This"."was"."a"."bad"."idea";
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code ?
<?php
echo "This","was"|"a","bad"."idea";
?>

Select an option to see the answer and solution.