Respuesta :
There are several operations that can be performed on a file in C++. Some of these operations include (but not limited to): the read, write and append operations. The correct option is (a)
Irrespective of the file operation, the following activities must be done on the file.
- Open the file
- Perform the intended operation or series of operations -> read, write, append, save etc.
- Close the file
The above three activities must be done in the listed order.
i.e. the file must be opened before carrying any operation on it; after which the file is closed.
Hence, we can conclude that option (a) is correct.
Learn more about c++ file operations at:
https://brainly.com/question/15788960s