Report Bug
Qus :

What will be the output of the following code?

f=open("demo.txt","r")
print(f.tell())

Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

f=open("demo.txt","r")
print(f.tell())


A. 1
B. 2
C. -1
D. 0


Solution
D. 0






Report Bug