Given pattern is odd even odd even… with increasing 2 → 1, 0, 3, 2, 5, 4, ?

A. 5
B. 6
C. 7
D. 10

🧠 Explanation:

Given: Pattern odd-even-odd-even with increments of 2 → 1, 0, 3, 2, 5, 4, ?
Step 1: Odd-position subsequence = 1, 3, 5, … (add 2)
Step 2: Even-position subsequence = 0, 2, 4, … (add 2)
Step 3: 7th term is odd position → next odd = 7
Check: Sequence becomes 1,0,3,2,5,4,7 (fits rule)
Final Answer: 7