कौन सा कथन फ़ाइल पॉइंटर को अंतिम स्थिति से 10 बाइट पीछे ले जाएगा?<break-line><break-line>Which statement will move file pointer 10 bytes backward from last position?
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following?<pre><code>import sys
sys.stdout.write('Welcome\n')
sys.stdout.write('All\n')</code></pre>
निम्नलिखित में से कौन सी त्रुटि दिए गए कोड द्वारा लौटाई गई है<break-line><break-line>Which of the following error is returned by the given code?<pre><code>>>> f = open("test.txt", "w")
>>> f.write(345)</code></pre>
कौन सा कथन फ़ाइल से एक पंक्ति लौटाएगा (फ़ाइल ऑब्जेक्ट 'f' है)<break-line><break-line>Which statement will return one line from a file (file object is ‘f’)