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
+ AnswerD
+ Explanation
+ Report