Computer Science
Information stored on a storage device with a specific name is called a ……………
- array
- dictionary
- file
- tuple
Related Questions
Name the functions used to read and write in CSV files.
What is the full form of :
- CSV
- TSV
Which of the following format of files can be created programmatically through Python to store some data ?
- Data files
- Text files
- Video files
- Binary files
To open a file c:\ss.txt for appending data, we use
- file = open("c:\\ss.txt", "a")
- file = open("c:\\ss.txt", "rw")
- file = open(r"c:\ss.txt", "a")
- file = open(file = "c:\ss.txt", "w")
- file = open(file = "c:\ss.txt", "w")
- file = open("c:\res.txt")