Question Detail How to get position n bytes forward in fileObject ? fileObject.seekg( ios::cur, n );fileObject.seekg( n, ios:cur );fileObject.seekg( n, ios::cur );fileObject.seekg( ios:cur, n ); Answer: Option C Similar Questions : 1. eof() is used to get easy code reivewend of filedebug reportfile close Answer: Option B 2. Which stream class is to only write on files ? ofstreamifstreamfstreamiostream Answer: Option A 3. How to get position n bytes forward in fileObject ? fileObject.seekg( ios::cur, n );fileObject.seekg( n, ios:cur );fileObject.seekg( n, ios::cur );fileObject.seekg( ios:cur, n ); Answer: Option C 4. Which stream class is used to both read and write on files ? ofstreamifstreamfstreamiostream Answer: Option C 5. 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 Read more from - C++ File Handling Questions Answers