निम्नलिखित में से किस की अभिव्यक्ति में सर्वोच्च प्राथमिकता है?<break-line><break-line>Which one of the following has the highest precedence in the expression?
कौन सी List Index उपरोक्त List से 'red' मान का चयन करेगी<break-line><break-line>Which list index would select the value 'red' from the above list<pre><code>colors = ["red", "green", "burnt sienna", "blue"]</code></pre>
निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code snippet?<pre><code>a = [0, 1, 2, 3]
for a[0] in a:
print(a[0])</code></pre>