Answer
Constructing a Turing machine that recognizes the set of all bit strings that end with a 0.
Work Step by Step
Turing machine that recognizes the set of all bit strings that end with a 0 will be.
(s0, 0, s1, 0, R),
(s0, 1, s0, 0, R),
(s1, 0, s1, 0, R),
(s1, 1, s0, 0, R),
(s1, B, s2, B, R)