निम्नलिखित का आउटपुट क्या होगा ?<break-line><break-line>What is the output of the following ?<pre><code>y = 'klmn'
for i in range(len(y)):
print(y)</code></pre>
निम्नलिखित पायथन कोड पर विचार करें<break-line><break-line>Let consider the following Python code<pre><code>a = True
b = False
c = False
if a or b and c:
print("TRUE")
else:
print("FALSE")</code></pre>
निम्नलिखित में से किसकी एक्सप्रेशन में सर्वोच्च प्राथमिकता है?<break-line><break-line>Which one of the following has the highest precedence in the expression?