39. Which option is correct about this program?
f=open(“ss.txt”,”wb”)
print(“Name of the file:”,f.name)
f.flush()
f.close()
a. Compilation error
b. Runtime error
c. No output
d. Flushes the file when closing them
Answers
Answered by
1
option D is correct
Flushes the file when closing them
Similar questions