Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 419 Bytes

0344.md

File metadata and controls

23 lines (19 loc) · 419 Bytes

What is the output of the following script?

$number = 15;
if ($number > 15);
    for ($i = 1$i < 5$i++)
        echo $i;

echo $number;
  • A) 123415
  • B) 12345
  • C) 1234515
  • D) 1234
Answer

Answer: A