download Mastguru Android App

Question Detail

Which among following is used to open a file in binary mode ?

  • ios:app
  • ios::out
  • ios::in
  • ios::binary
Similar Questions :

1. Which is correct syntax ?

  • myfile:open ("example.bin", ios::out);
  • myfile.open ("example.bin", ios::out);
  • myfile::open ("example.bin", ios::out);
  • myfile.open ("example.bin", ios:out);

2. Which among following is used to open a file in binary mode ?

  • ios:app
  • ios::out
  • ios::in
  • ios::binary

3. Which stream class is to only read from files ?

  • ofstream
  • ifstream
  • fstream
  • iostream

4. Calling the stream's member function sync() causes an immediate synchronization.

  • True
  • False

5. Which stream class is to only write on files ?

  • ofstream
  • ifstream
  • fstream
  • iostream
Read more from - C++ File Handling Questions Answers
Post a comment