निम्नलिखित कथन में 'f' क्या है?<break-line><break-line>What is 'f' in the following statement?<break-line><break-line><pre><code>f=open("Data.txt", "r")</code></pre>
पायथन भाषा में, निम्नलिखित में से किसे वेरिएबल के रूप में परिभाषित नहीं किया जा सकता है?<break-line><break-line>In python language, which of the following cannot be defined as a variable?
निम्नलिखित कोड सेगमेंट क्या प्रिंट करेगा?<break-line><break-line>What will the following code segment print?<break-line><break-line><pre><code>if True or True:
if False and True or False:
print('A')
elif False and False or True and True:
print('B')
else:
print('C')
else:
print('D')</code></pre>