OD
(Choose 1 answer)
A. 6
B. 2
C. 1
D. 3
In the following code (numbers added) - which will be the last line to execute successfully?
(1) astr = 'Hello Bob'
(2) istr = int(astr)
(3) print('First',(4) astr = '123'istr)
(5) istr = int(astr)
(6) print('Second', istr)
Exit (11