Consider the following Deterministic Finite Automaton M. ISRO 2014 Let S…
2014
Consider the following Deterministic Finite Automaton M. ISRO 2014

Let S denote the set of eight-bit strings whose second, third, sixth and seventh bits are 1. The number of strings in S that are accepted by M is ____
- A.
0
- B.
1
- C.
2
- D.
3
Attempted by 120 students.
Show answer & explanation
Correct answer: C
Concept: A DFA accepts a string exactly when, starting from the start state and following the transition function symbol by symbol in order, the last symbol leaves the machine in an accepting (final) state. Because a DFA has exactly one outgoing edge per symbol from every state, each string traces a single, unique path through the states, so acceptance is decided purely by that trace, not by any shortcut pattern-matching rule.
Application: Label the five states of M left to right as q0 (start) through q4 (the double circle, accepting), and read the transition function off the diagram:
State | on 0 | on 1 |
|---|---|---|
q0 | q1 | q0 (self) |
q1 | q0 | q2 |
q2 | q3 | q1 |
q3 | q3 (self) | q4 |
q4 (accepting) | q4 (self) | q4 (self) |
The set S consists of eight-bit strings b1b2...b8 with b2 = b3 = b6 = b7 = 1 fixed; the remaining four bits b1, b4, b5, b8 are free, giving 24 = 16 candidate strings of the form b1 1 1 b4 b5 1 1 b8. Tracing each of the sixteen combinations through the transition table above gives:
Free bits (b1 b4 b5 b8) | String b1b2...b8 | Final state | Accepted? |
|---|---|---|---|
0 0 0 0 | 01100110 | q0 | No |
0 0 0 1 | 01100111 | q2 | No |
0 0 1 0 | 01101110 | q1 | No |
0 0 1 1 | 01101111 | q0 | No |
0 1 0 0 | 01110110 | q4 | Yes |
0 1 0 1 | 01110111 | q4 | Yes |
0 1 1 0 | 01111110 | q0 | No |
0 1 1 1 | 01111111 | q2 | No |
1 0 0 0 | 11100110 | q1 | No |
1 0 0 1 | 11100111 | q0 | No |
1 0 1 0 | 11101110 | q3 | No |
1 0 1 1 | 11101111 | q1 | No |
1 1 0 0 | 11110110 | q0 | No |
1 1 0 1 | 11110111 | q2 | No |
1 1 1 0 | 11111110 | q1 | No |
1 1 1 1 | 11111111 | q0 | No |
Cross-check: Re-tracing the accepting cases independently, symbol by symbol, confirms the table above:
01110110: q0 -0→ q1 -1→ q2 -1→ q1 -1→ q2 -0→ q3 -1→ q4 -1→ q4 -0→ q4 — ends in the accepting state.
01110111: q0 -0→ q1 -1→ q2 -1→ q1 -1→ q2 -0→ q3 -1→ q4 -1→ q4 -1→ q4 — also ends in the accepting state, confirming that once the machine reaches q4, the last free bit (0 or 1) does not leave it.
01100110 (a rejected case from the table, for contrast): q0 -0→ q1 -1→ q2 -1→ q1 -0→ q0 -0→ q1 -1→ q2 -1→ q1 -0→ q0 — ends back at q0, confirming it is correctly excluded.
Result: Exactly two of the sixteen strings in S — 01110110 and 01110111 — are accepted by M, so the number of strings in S accepted by M is 2.