πŸ“Š PHP
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
πŸ’¬ Discuss
βœ… Correct Answer: (D) The number is: 1 The number is: 2 The number is: 3 The number is: 4 The number is: 5

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
33101
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Sikhar Chaudhary
Publisher
πŸ“ˆ
97%
Success Rate