The method open(“file1.txt”, r+) opens the file file1.txt in
a)read mode
b)write mode
c)read write mode
d)append mode
Answers
Answered by
0
Answer:
read write mode is the correct answer not b) write mode
Answered by
0
Answer: (c) read write mode
Explanation:
The method open(“file1.txt”, r+) opens the file file1.txt in read and write mode.
A file is a container that is used to store data in computer devices.
The major operations that can be done on a file are :
⇒ Creating a new file
⇒ Opening an existing file
⇒ Closing a file
⇒ Reading from and writing information to a file
#SPJ3
Similar questions