Question: Which is _not_ a valid loop construct in Go?
- `do { ... } while i < 5`
- `for _,c := range "hello" { ... }`
- `for i := 1; i < 5; i++ { ... }`
- `for i < 5 { ... }`
Answer: The correct answer of the above question is Option A:`do { ... } while i < 5`