Computer Science, asked by sumanriddam9727, 19 days ago

A programmer has confusion in understanding the behaviour of opening a file in "w" mode. Clear his/her confusion, by suggesting the correct option among the given below. The behaviour of "w" mode is

Answers

Answered by jahnavi578
0

The behaviour of opening a file in 'w' mode is about opening a file in 'write' mode.

1. There are different types of modes in which a user can open a file.

2. Among those modes, one of the most widely used modes is the write mode.

3. It opens the required file to write in it.

4. A programmer can open a file in 'w' mode and write in it, which can't be done if it is opened in other modes such as read, append modes.

Similar questions