Match the following:
1. Memo data type
2. Text data type
3. Text on a path
4. Text in a Drawn Object
option
a. The cursor changes to IA
b. The cursor changes to IAB
c. 255 Characters
d. 65,536 Characters
Answers
Data file handling in python class 12 Objective type questions:
Fill in the blanks
A collection of bytes stored in computer’s secondary memory is known as _______.
___________ is a process of storing data into files and allows to performs various tasks such as read, write, append, search and modify in files.
The transfer of data from program to memory (RAM) to permanent storage device (hard disk) and vice versa are known as __________.
A _______ is a file that stores data in a specific format on secondary storage devices.
In ___________ files each line terminates with EOL or ‘\n’ or carriage return, or ‘\r\n’.
To open file data.txt for reading, open function will be written as f = _______.
To open file data.txt for writing, open function will be written as f = ________.
In f=open(“data.txt”,”w”), f refers to ________.
To close file in a program _______ function is used.
A __________ function reads first 15 characters of file.
A _________ function reads most n bytes and returns the read bytes in the form of a string.
A _________ function reads all lines from the file.
A _______ function requires a string (File_Path) as parameter to write in the file.
A _____ function requires a sequence of lines, lists, tuples etc. to write data into file.
To add data into an existing file ________ mode is used.
A _________ function is used to write contents of buffer onto storage.
A text file stores data in _________ or _________ form.
A ___________ is plain text file which contains list of data in tabular form.
You can create a file using _________ function in python.
A __________ symbol is used to perform readi
Answer:
1 - B
2 - A
3 - D
4 - C
Explanation:
Plz Mark My Answer As Brainlists