Question: Which line of code, after execution, results in `i` having the value of 1?

  1. `for(i=1; i<=1; i++);`
  2. `for(i=1; i=10; i++);`
  3. `for(i=1; i==10; i++);`
  4. `for(i=10; i>=1; i--);`

Answer: The correct answer of the above question is Option C:`for(i=1; i==10; i++);`