A
Q. What will be the output of the following PHP code ?
Code:
<?php
$p = 8; $r = 7; $q = 15;
$s = $p + $r == $q;
print $s;
?>
$p = 8; $r = 7; $q = 15;
$s = $p + $r == $q;
print $s;
?>
- Correct Answer - Option(A)
- Views: 10
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.