Multiple choice Which function in a stream sets the current get position? seekg() seekp() get() tellg() Reveal answer Fill a bubble to check yourself A Correct answer Explanation seekg() sets the current get (input) position in an input stream. The companion function seekp() sets the put (output) position for output streams. The 'g' stands for 'get'.