Skip to content
#1. A ______ is a collection of related data stored in a particular area on the disk.
#2. ___________ can be designed to perform the read and write operations on these files.
#3. The ________ system of c++ handles file operations which are very similar to the console input operations.
#4. The ________ system of C++ handles file operations which are very much similar to the console output operations.
#5. The Stream that supplies data to the program is known as ________ stream
#6. The stream that receives data from the program is known as _________ stream.
#7. To set the file buffers to read and write.
#8. Provides operations common to the file streams.
#9. Provides input operations.
#10. Provides output operations.
#11. Provides support for simultaneous input and output operations.
#12. ______ can be used to open multiple files that use the same stream object.
#13. _________ can be used to close multiple files that use the same stream object.
#14. Append to end-of-file.
#15. Go to end-of-file on opening.
#17. Open file for reading only.
#18. Open fails if the file does not exists.
#19. Open file for writing only.
#20. Delete contents of the files if it exists.
#21. Each file has two associated pointers known as the _____ pointers.
#22. Moves get pointer to a specified location.
#23. Moves put pointer to a specified location.
#24. Gives the current position of the get pointer.
#25. Gives the current position of the put pointer.