Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 453 Bytes

0090.md

File metadata and controls

25 lines (22 loc) · 453 Bytes

Consider the following PHP script:

$a = 5;
$b = 10;
function Mul() {
    $GLOBALS['b'] = $GLOBALS['a'] * $GLOBALS['b'];
}
Mul();
print($b);

What will be the output?

  • A) 50
  • B) Script will throw an error.
  • C) 10
  • D) 0
Answer

Answer: A