Match List-I with List-II :
|
List-I |
List-II |
||
|
(A) |
f.seek(-10, 1) |
(I) |
from beginning of file, move 10 bytes forward |
|
(B) |
f.seek(10, 1) |
(II) |
from current position moves 10 bytes backward |
|
(C) |
f.seek(10) |
(III) |
from current position moves 10 bytes forward |
|
(D) |
f.seek(-10, 2) |
(IV) |
from end of the file, move to the 10 bytes backward |
Choose the correct answer from the options given below:
1
(A) - (I), (B) - (II), (C) - (III), (D) - (IV)
2
(A) - (II), (B) - (III), (C) - (IV), (D) - (I)
3
(A) - (III), (B) - (II), (C) - (IV), (D) - (I)
4
(A) - (II), (B) - (III), (C) - (I), (D) - (IV)