CBSE Class 12 Computer Science Question 50 of 136

Data File Handling — Question 15

Back to all questions
15
Question

Question 15

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
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.