<<< Previous question <<< Question ID#0072.md >>> Next question >>>
What will be the output of the following code snippet?
$a = 1;
$b = 2;
$c = 0xAF;
$d = $b + $c;
$e = $d * $b;
$f = ($d + $e) % $a;
print($f + $e);
- A) 354
- B) 200
- C) 0
- D) The script will throw an error message
Answer
Answer: A