Question: Which loop displays all numbers from 1 to 10 inclusive?

  1. `$i = 1;`
  2. `$i = 0;`
  3. `while ($i <= 10) {`
  4. `$i = 0;`

Answer: The correct answer of the above question is Option D:`$i = 0;`