Computer Science
What happens if no arguments are passed to the seek() method?
- file position is set to the start of file
- file position is set to the end of file
- file position remains unchanged
- results in an error
Related Questions
Which of the following modes is used for both writing and reading from a binary file?
- wb+
- w
- wb
- w+
Which statement is used to retrieve the current position within the file?
- fp.seek()
- fp.tell()
- fp.loc
- fp.pos
Which of the following mode will refer to binary data ?
- r
- w
- +
- b
Every record in a CSV file is stored in reader object in the form of a list using which method?
- writer()
- append()
- reader()
- list()