Which type of data file is analogous to an audio cassette tape?@random access file@sequential access file@binary file@source code file@B@
Which of the following header files is required for creating and reading data files?@ofstream.h@fstream.h@ifstream.h@console.h@B@
In the code fout.open("scores.dat", ios::out);@ios::out is the stream operation mode.@fout is the header file reference.@ios::out is the stream variable name..@fout is the name of the file.@A@
ifstream fin; would be used when@creating a file@reading a file@appending a file@removing a file@B@
eof( ) is the function used for@asserting no errors in a file@appending data to a file@counting the amount of data in a file@checking for end of file@B@
How would you output to an open file named a_file?@a_file.out("Output");@a_file="Output";@a_file<<"Output";@a_file.printf("Output");@A@
What does ios::ate mean as an argument to ofstream?@Open file, but do not create.@Open file, create.@Open file for read access only.@Open file, set the position to the end.@D@
Which of the following classes handles file input?@ofstream@ifstream@instream@inputfile@D@
In the command  "fqread=fopen("input_data.txt","r")", what is the meaning of 'r' @write@read@appending@none@B@
In which header file "fseek" is defined@cstring@iostream@cstdio@cassert@C@
Which of the following is used to set the position of the curser in a file@fgets@fopen@fclose@fseek@D@
We use command "pos=ftell(fp)" in file handling process,what is the function of 'ftell'@return current position of file@set internal index within the file@return 0 on success@restore file position@none@A@
We use command "rewind(fp)" in file handling process,what is the function of 'rewind'@return current position of file@set internal index within the file@return 0 on success@restore file position to the begining@none@c@
In the command  "fqread=fopen("input_data.txt","w")", what is the meaning of 'w' @write@read@appending@read and write@A@
In the command  "fqread=fopen("input_data.txt","r+")", what is the meaning of 'r+' @write@read@appending@read and write@C@
which of the following property each file have@name(and extension)@a'path'@permissions@all@D@
which of the following indicate the end of file@foef@feof@fefo@none@B@
which of the following function contained in 'cstdio' header file@fgets@fopen@fclose@all@D@
