1
Which one is the correct answer?
<?php
$J = 25;
echo "$J" + 10;
?>
View Answer
35
10
2510
0
2
Which one is not a data type in PHP?
View Answer
String
Integer
NULL
None of the above
3
Which one gives 14
View Answer
echo (2+4)*3;
echo 2 + 4 * 3;
echo 2 * 3 + 4;
echo 3 + 4 * 2;
4
What is the return value of the Spaceship Operator?
$y = 3 <=> 2;
View Answer
TRUE
FALSE
1
0
5
Find the return value of $x = (10 === "10");
View Answer
TRUE
FALSE
1
0
6
What is the return value of the given ARRAY.
$a = array(TRUE];
echo $a[0];
View Answer
TRUE
0
1
NO VALUE SHOWN