Q.1.
What will be the output of the following PHP code ?
<?php
$cars = array("Volvo", "BMW", "Toyota");
echo "My car is a {$cars[0]}";
?>
Q.2.
What will be the output of the following PHP code ?
<?php
$color = "red";
$color = "green";
echo "$color";
?>
Q.3.
What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "green";
echo "$color1" . "$color2";
?>
Q.4.
What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "green";
echo "$color1" + "$color2";
?>
Q.5.
What will be the output of the following PHP code ?
<?php
 # echo "Hello world";
 echo "# Hello world"; 
?>
Q.6.
What will be the output of the following PHP code ?
<?php
$color1 = "1";
$color2 = "1";
echo "$color1" + "$color2";
?>
Q.7.
What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "1";
$color3 = "grey"
echo "$color1" + "$color2" . "$color3";
?>
Q.8.
What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "red";
echo "$color1" + "$color2";
?>
Q.9.
What will be the output of the following PHP code ?
<?php
$color1 = "red";
$color2 = "1";
echo "$color1" + "$color2";
?>
Q.10.
What will be the output of the following PHP code ?
<?php
echo "This", "was", "a", "bad", "idea";
?>
Q.11.
What will be the output of the following PHP code ?
<?php
echo "This"."was"."a"."bad"."idea";
?>
Q.12.
What will be the output of the following PHP code ?
<?php
echo "This","was"|"a","bad"."idea";
?>
Q.13.
What will be the output of the following PHP code ?
<?php
echo "echo "Hello World"";
?>
Q.14.
What will be the output of the following PHP code ?
<?php
<?php
echo "Hello world";
?>
?>
Q.15.
What will be the output of the following PHP code ?
<?php
"Hello World"
?>
Q.16.
What will be the output of the following PHP code ?
<?php
print_r "Hello world"
?>
Q.17.
What will be the output of the following PHP code ?
<?php
$color = red;
echo "$color";
?>
Q.18.
What will be the output of the following PHP code ?
<?php
$color = red;
echo "$color" . red ;
?>
Q.19.
What will be the output of the following PHP code ?
<?php
$color1 = red;
$color2 = green;
echo "$color1"."$color2";
?>