Computer Science, asked by sivakumar34937, 6 months ago

The default file open mode is called… ………​

Answers

Answered by akshit1590
10

Answer:

The open() function opens a file in text format by default. To open a file in binary format, add 'b' to the mode parameter. Hence the "rb" mode opens the file in binary format for reading, while the "wb" mode opens the file in binary format for writing. Unlike text mode files, binary files are not human readable.

I hope it helps u........

Plzz mark me as brainliest answers.............

Answered by ritadeviw121
5

Explanation:

The access modes available for the open function are as follows: r : Opens the file in read-only mode. Starts reading from the beginning of the file and is the default mode for the open function. rb : Opens the file as read-only in binary format and starts reading from the beginning of the file.

Similar questions