Qus टेक्स्ट फाइल data.txt की पहली लाइन को पढ़ने के लिए निम्न में से कौन सा विकल्प इस्तेमाल किया जा सकता है?
A. f = open('data.txt'); f.read()
B. f = open('data.txt','r'); f.read(n)
C. myfile = open('data.txt'); f.readline()
D. f= open('data.txt'); f.readlines()