Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. The________ member function moves the read position of a file. 2. Files that

ID: 3763769 • Letter: 1

Question

1. The________ member function moves the read position of a file.

2. Files that will be used for both input and output should be defined as______ data type.

3. The ________member function returns the write position of a file.

4. The ios:: _______file access flag indicates that output to the file will be written to the end of the file.

5. _______ files are files that do not store data as ASCII characters.

6. The ______ member function moves the write position of a file.

7. The __________function can be used to send an entire record or array to a binary file with one statement.

8. The______>> operator_______any leading whitespace.

9. The ________ function “looks ahead” to determine the next data value in an input file.

10.The ________ and __________ functions do not skip leading whitespace characters.

Explanation / Answer


1. seekp()
2. fstream
3. tellp();
4. ios::ate
5. binary files
6. seekg()
7. put
8. std::ws
9. getline()