| List-I | List-II |
| (A) readline() | (I) Writes a sequence of strings to the file |
| (B) writelines() | (II) Reads a single line from the file |
| (C) seek() | (III) Force any buffered output to be written to the file |
| (D) flush() | (IV) Moves the file pointer to the specified position |
To accurately associate the methods and their functions from List-I and List-II, an analysis of each is provided:
| List-I | List-II |
| (A) readline() | (II) Reads a single line from the file |
| (B) writelines() | (I) Writes a sequence of strings to the file |
| (C) seek() | (IV) Moves the file pointer to the specified position |
| (D) flush() | (III) Force any buffered output to be written to the file |
The definitive pairings are: (A) - (II), (B) - (I), (C) - (IV), and (D) - (III).
Given the following statement: import matplotlib.pyplot as plt 'plt' in the above statement is .............. name.