Difficulty: Easy
Correct Answer: 101
Explanation:
Given data
11, 10, ?, 100, 1001, 1000, 10001
Concept/Approach
The sequence is built by two alternating operations on the digit string: (i) change the last digit to 0, then (ii) append a trailing 1. This keeps a binary-like pattern of 1s and 0s.
Step-by-step
Start: 11Operation (i): 11 → 10 (last digit set to 0)Operation (ii): 10 → 101 (append 1) ← missing termOperation (i): 101 → 100Operation (ii): 100 → 1001Operation (i): 1001 → 1000Operation (ii): 1000 → 10001
Final Answer
101
Discussion & Comments