Which mod is used to retain the previous file contents ?
In
Trunk
Add
App
Which class contains tellg( ) member function ?
Iostream
Istream
Ostream
Stream
Which function flushes the buffer before terminating the connection of the file with the stream ?
Delete( )
Close( )
Remove( )
Flush( )
Which of the following is an output function ?
Get( )
Out( )
Display( )
Put( )
Which member records information on the status of a file currently using ?
Readstate( )
Getstate( )
State( )
Rdstate( )
What will be a zero value of an object after a file operation represents ?
Binary value
Error
Object value
Ascii value
Which of the following stream is used for both input and output operations ?
Ofstream
Ifstream
Fstream
When will good( ) function returns 1 ?
No bits are set
Error occurs
Eof occurs
All bits are set
Which of the following is a member of istream class ?
%
( )
>>
<<
What is the syntax to open a file using stream object ?
Stream_object("file_name");
Stream_object.get("file_name")
Stream_object.open("file_name");
file_name.open( );