KnowledgeBoat Logo

Computer Science

In file handling, what do the terms "r" and "a" stand for?

  1. read, append
  2. append, read
  3. write, append
  4. None of these

Python Data Handling

2 Likes

Answer

read, append

Reason — In file handling, the term "r" stands for "read" mode, which is used when we want to read data from a file and "a" stand for "append" mode, which is used when we want to add data to the file.

Answered By

1 Like


Related Questions