Which of the following is an output function ?
Get( )
Out( )
Display( )
Put( )
Which methods are used for manipulating a file character by character ?
Getline( ), getchar( )
Put( ), get( )
Read( ), write( )
Readline( ), writeline( )
What will be a zero value of an object after a file operation represents ?
Binary value
Error
Object value
Ascii value
What may happen when the disc space is filled for a new file ?
Can extend space using a function
Disc space full warning
Program will hang
What does ios::nocreate describes ?
Don't create a write file
Don't create a read file
Don't open if a file exists
Don't close a file
Which function flushes the buffer before terminating the connection of the file with the stream ?
Delete( )
Close( )
Remove( )
Flush( )
What does eof( ) represent ?
End of file
Exit of file
Entry of file
End of function
What is the syntax to check eof ?
Eof( )
File_name.eof( )
Objectname.eof( )
Method.eof( )
Which member records information on the status of a file currently using ?
Readstate( )
Getstate( )
State( )
Rdstate( )
Which are the modes in which a file can be opened ?
Input mode, output mode
Read and write mode
Entry and exit mode
In and out mode