Step 1: Write next–state equations
For a T–FF: \(Q^+ = Q \oplus T\). For a D–FF: \(Q^+ = D\).
From the figure (using the labels in the question):
\[
\begin{aligned}
T_1 &= \overline{Q_3}, & Q_1^+ &= Q_1 \oplus \overline{Q_3}, \\
D_2 &= Q_1, & Q_2^+ &= Q_1, \\
T_3 &= Q_2, & Q_3^+ &= Q_3 \oplus Q_2.
\end{aligned}
\]
Step 2: Iterate from the given initial state \((Q_1,Q_2,Q_3)=(0,1,1)\)
On each rising edge (all FFs clocked together) apply the above equations:
\[
\begin{array}{c|c}
\text{Clock} & (Q_1,Q_2,Q_3) \\
\hline
0 & (0,1,1)\ \text{(given)} \\
1 & (0,0,0) \\
2 & (1,0,0) \\
3 & (0,1,0) \\
4 & (1,0,1) \\
5 & (1,1,1) \\
6 & (1,1,0) \\
7 & (0,1,1)\ \text{(cycle repeats)}
\end{array}
\]
Step 3: Read off the reachable set
The reachable states are
\(\{(0,1,1), (0,0,0), (1,0,0), (0,1,0), (1,0,1), (1,1,1), (1,1,0)\}\).
The tuple \((0,0,1)\) never appears and the sequence repeats thereafter, so it is unreachable.
\[
\boxed{\text{State }(0,0,1)\ \text{can never be obtained.}}
\]