Skip to content
#1. _____ is a named location on disk to store related information.
#2. _______ is used to permanently store data in a non-volatile memory.
#3. _____ is a volatile which loses its data when computer is turned off, we use files for future use of the data.
#4. Python has a built-in function ______ to open a file.
#5. Open a file for reading.
#6. Open a file for writing.
#7. Open a file for exclusive creation.
#8. Open for appending at the end of the file without truncating it.
#10. Open in binary mode.
#11. Open a file for updating.
#13. Separate the underlying binary buffer from the TextIOBase and return it.
#14. Return an integer number of the file.
#15. Flush the write buffer of the file stream.
#16. The file stream is interactive.
#17. Reads characters from the file.
#18. File stream can be read from.
#19. Read and return one line from the file.
#20. Change the file position to offset bytes in reference to from start to end.
#21. File stream supports random access.
#22. Returns the current file location.
#23. Resize the file stream to size bytes.
#24. File stream can be written to.
#25. Write string to the file and return the number of characters written.