Correct AnswerC. 0 to 2n − 1
Quick Explanation
An n-bit binary counter has 2ⁿ distinct states. If it starts at 0, the highest count is therefore 2ⁿ − 1, giving the range 0 to 2ⁿ − 1.
Detailed Explanation
Concept & Reasoning
Each flip-flop stores one binary bit, so n flip-flops form 2ⁿ unique bit patterns. A 4-bit counter, for example, runs from 0000₂ (0) to 1111₂ (15), i.e. 0 to 2⁴−1. This generalizes directly to n bits.
How to Solve It in the Exam
n bits → 2ⁿ states → maximum numeric count 2ⁿ−1.
Important Exam PointSeparate 'number of states' from 'largest count'.
Related Revision Path
This question sits in the revision path Digital Electronics → Sequential Logic → Counters .