Question Detail

Which is correct syntax for, position n bytes back from end of fileObject ?

  • fileObject.seekg(ios::end, n);
  • fileObject.seekg(n, ios:end );
  • fileObject.seekg(n, ios::end );
  • fileObject.seekg(ios:end, n);
Similar Questions :

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

  • True
  • False

2. What is use of eof() ?

  • Returns true if a file open for reading has reached the next character.
  • Returns true if a file open for reading has reached the next word.
  • Returns true if a file open for reading has reached the end.
  • Returns true if a file open for reading has reached the middle.

3. Which stream class is used to both read and write on files ?

  • ofstream
  • ifstream
  • fstream
  • iostream

4. Which is correct syntax for, position n bytes back from end of fileObject ?

  • fileObject.seekg(ios::end, n);
  • fileObject.seekg(n, ios:end );
  • fileObject.seekg(n, ios::end );
  • fileObject.seekg(ios:end, n);

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

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