Question: Which statement will return all the odd numbers from 1 to 9?

  1. `2*[1:5]+1`
  2. `1:2:9`
  3. `isodd(1:9)`
  4. `1:odd:9`

Answer: The correct answer of the above question is Option B:`1:2:9`