Home / Programming MCQs / PHP MCQs / Question

S

Sikhar Chaudhary • 4.52K Points
Extraordinary

Q. What will be the output of the following PHP code ?

Code:
<?php
for ($num = 1; $num <= 5; $num++)
{
    echo "The number is: $num \n";
}
?>
(A) The number is: 1
(B) The number is: 1 The number is: 2
(C) The number is: 1 The number is: 2 The number is: 3
(D) The number is: 1 The number is: 2 The number is: 3 The number is: 4 The number is: 5

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.