Which are the parameters of a write( ) method ?
Size of the block, filename
Pointer of the block, size of the block
Filename, pointer of the block
File name, file pointer
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( );
What can initialize an object while it is being created ?
Constructor
Open( )
Create( )
Init( )
Which class supports the error handling member functions ?
Stream class
Fstream class
Ios class
Istream class
What is the syntax to check eof ?
Eof( )
File_name.eof( )
Objectname.eof( )
Method.eof( )
Which class is the parent class of istream class ?
Io class
Data class
Which of the following is a file type ?
Byte files
Ascii file
Bit file
In file
Which file is created by storing an array ?
Binary file
Byte file
String file
Which methods are used for manipulating a file character by character ?
Getline( ), getchar( )
Put( ), get( )
Read( ), write( )
Readline( ), writeline( )
Which class contains tellg( ) member function ?
Iostream
Istream
Ostream
Stream