24
Question Which of the following statement is incorrect in the context of pickled binary files ?
- The csv module is used for reading and writing objects in binary files.
- The pickle module is used for reading and writing objects in binary files.
- The load() of the pickle module is used to read objects.
- The dump() of the pickle module is used to write objects.
The csv module is used for reading and writing objects in binary files.
Reason — The CSV module is used for reading and writing objects in CSV files.