Chapter 12: Files

 

Results

Previous
Next

#1. A ______ is a collection of related data stored in a particular area on the disk.

Previous
Next

#2. ___________ can be designed to perform the read and write operations on these files.

Previous
Next

#3. The ________ system of c++ handles file operations which are very similar to the console input operations.

Previous
Next

#4. The ________ system of C++ handles file operations which are very much similar to the console output operations.

Previous
Next

#5. The Stream that supplies data to the program is known as ________ stream

Previous
Next

#6. The stream that receives data from the program is known as _________ stream.

Previous
Next

#7. To set the file buffers to read and write.

Previous
Next

#8. Provides operations common to the file streams.

Previous
Next

#9. Provides input operations.

Previous
Next

#10. Provides output operations.

Previous
Next

#11. Provides support for simultaneous input and output operations.

Previous
Next

#12. ______ can be used to open multiple files that use the same stream object.

Previous
Next

#13. _________ can be used to close multiple files that use the same stream object.

Previous
Next

#14. Append to end-of-file.

Previous
Next

#15. Go to end-of-file on opening.

Previous
Next

#16. Binary file is

Previous
Next

#17. Open file for reading only.

Previous
Next

#18. Open fails if the file does not exists.

Previous
Next

#19. Open file for writing only.

Previous
Next

#20. Delete contents of the files if it exists.

Previous
Next

#21. Each file has two associated pointers known as the _____ pointers.

Previous
Next

#22. Moves get pointer to a specified location.

Previous
Next

#23. Moves put pointer to a specified location.

Previous
Next

#24. Gives the current position of the get pointer.

Previous
Next

#25. Gives the current position of the put pointer.

Previous
Finish