1.

What will be the output of the following PHP code?
<?php
$num = 6;
$num1 = 6;
echo ($num === $num1);
?>

A. Error
B. 1
C. False
D. 6 === 6
E. None of these
Answer» C. False


Discussion

No Comment Found

Related MCQs