Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 400 Bytes

0443.md

File metadata and controls

21 lines (17 loc) · 400 Bytes

What is the output of the following code?

$a = "a, b,c, d, e f, g";
$b = array_merge(explode(''$a), array("a""b"));
echo count($b);
  • A) 7
  • B) 9
  • C) 5
  • D) 3
Answer

Answer: A