Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 444 Bytes

0447.md

File metadata and controls

28 lines (24 loc) · 444 Bytes

What is the output of the following?

$a = 7;
$b = 4;
function b($a$b) {
   global $a$b;
   $a += 7;
   $a++;
   $b += $a;
   return true;
}
echo $b$a;
  • A) 47
  • B) 1419
  • C) 74
  • D) 1519
Answer

Answer: A