(13)
Answer (Choose 1 answer)
For the following code:
astr = 'Hello Bob'
A. false
B -1
try:
istr = 0
istr = int(astr)
except:
istr = -1
C. It will be a random number depending on the operating system the program runs on
What will the value be for istr after this code executes?
D. It will be the 'Not a number' value (i.e. NaN)
cute
Stam