Report Bug
Qus : Identify the correct function call to read first 5 character of the file from the beginning
Qus शुरुआत से फ़ाइल के पहले 5 अक्षर को पढ़ने के लिए सही फ़ंक्शन कॉल की पहचान करें

A. f.read(5)
B. f.read()=5
C. f.readline(5)
D. f.readlines(5)


Solution
A. f.read(5)






Report Bug