निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = ['25', 'Today', '53', 'Sunday', '15']
x.sort()
print(x)</code></pre>
निम्नलिखित का आउटपुट क्या होगा ?<break-line><break-line>What is the output of the following?<pre><code>d = {0: 'a', 1: 'b', 2: 'c'}
for i in d:
print(i)</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [25, 'Today', 53, 'Sunday', 15]
x.reverse()
print(x)</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'}
n = list(m.items())
print(n)</code></pre>