Solved

Select the Answer That Should Be Used to Replace the Missing

Question 11

Multiple Choice

Select the answer that should be used to replace the missing code in the following statements. myList = list()
FileObj = open("myfile.dat", "rb")
While True:
Try:
Item = pickle.load(fileObj)
MyList.append(item)
< missing code >
FileObj.close()
Break
Print(myList)


A) if EOF:
B) elif Error:
C) except EOFError:
D) else while TRUE:

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions