Question:What is the output of the following script?
<?php
$a = 10;
$b = 20;
$c = 4;
$d = 8;
$e = 1.0;
$f = $c + $d * 2;
$g = $f % 20;
$h = $b - $a + $c + 2;
$i = $h << $c;
$j = $i * $e;
print $j;
?>
 

A 128 

B 42 

C 242.0 

D 256 

E 342 

+ Answer
+ Explanation
+ Report
Total Preview: 637

Copyright © 2024. Powered by Intellect Software Ltd