fileObject.open(fileName[, mode]);
open(fileObject, fileName, mode);
fileObject(open, fileName, mode);
fileObject.open([fileName], [mode]);
12. Which mode argument, used with an ofstream object, is used to open a file for appending purposes?
13. Which mode argument, used with an ofstream object, is used to open a file for output purposes (an empty file to which
data can be written)?
14. Data can be accessed by its byte location using which file type?
15. With respect to a sequential access file, which of the following terms best describe a single item of information about
a person, place, or thing?
16. Which of the following shows the proper syntax for reading numeric and character data from a sequential access file?
fileObject >> variableName;
fileObject << variableName;
17. What type of files are read and written in consecutive order?
18. Which of the following statements will create an input file object called inFile?
19. Which mode argument, used with an ifstream object, is used to open a file for input purposes?
20. Which example shows the proper syntax of the close function?
21. A collection of one or more related fields that contain all of the necessary data about a specific person, place, or thing
is known as which of the following?