Practicing for For Loops of Web Design & Development

Questions 1 of 12
  • Q. What will be the output of the following PHP code?
    $i = 100;
    for ($i)
    {
      print $i;
    }