Question Detail Which functions allow to change the location of the get and put positions ? sg() and sp()sekg() and sekp()gog() and gop()seekg() and seekp() Answer: Option D Similar Questions : 1. Which stream class is used to both read and write on files ? ofstreamifstreamfstreamiostream Answer: Option C 2. 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); Answer: Option C 3. Calling the stream's member function sync() causes an immediate synchronization. TrueFalse Answer: Option A 4. How to find the position at end of fileObject ? fileObject.seekg( 0, ios::end );fileObject.seekg( 0, ios::end );fileObject.seekg( 0, ios::end );fileObject.seekg( 0, ios::end ); Answer: Option A 5. 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); Answer: Option B Read more from - C++ File Handling Questions Answers