Correct Answer: फ़ाइल डिस्क्रिप्टर f को बंद करता है/close the file descriptor f
Q37.
seek() की सिंटैक्स है:<break-line><break-line>The syntax of seek() is:<break-line><pre><code>file_object.seek(offset[, reference_point])</code></pre><break-line>reference_point का क्या अर्थ है?<break-line>What does the reference_point indicate?
A.reference_point वर्तमान स्थिति को दर्शाता है / indicates the current position of the file object
B.reference_point प्रारंभिक स्थिति को दर्शाता है / indicates the starting position of the file object
C.reference_point अंतिम स्थिति को दर्शाता है / indicates the ending position of the file object
Correct Answer: reference_point प्रारंभिक स्थिति को दर्शाता है / indicates the starting position of the file object
Q38.
एक Python प्रोग्राम कमांड लाइन से कितने आर्गुमेंट स्वीकार कर सकता है?<break-line><break-line>How many arguments a Python program can accept from the command line?
जब हम फ़ाइल को एपेंड मोड में खोलते हैं तो फ़ाइल पॉइंटर फ़ाइल के ……….. पर होता है।<break-line><break-line>When we open file in append mode the file pointer is at the ……….. of the file.
A.फ़ाइल के बीच में कहीं भी / anywhere in between the file