Multiple choice What would be the output of the following C++ code? textfile.seekp(5, ios::beg); Moves the put pointer by 5 bytes from the beginning of a data file Moves the get pointer by 5 bytes from the beginning of a data file Displays the contents of a data file Modifies data of a data file Deletes the contents of a data file Reveal answer Fill a bubble to check yourself B Correct answer Explanation This is the correct option as seekg() function is used to move the get pointer from the beginning of a data file.