opening a file in write mode overwrites the current content of the file if anything new is written to it…

opening a file in write mode overwrites the current content of the file if anything new is written to it. true false

opening a file in write mode overwrites the current content of the file if anything new is written to it. true false

Answer

Brief Explanations:

When a file is opened in write - mode (w in many programming languages), if there is existing content in the file, it gets erased and replaced with the new content written to it.

Answer:

True