निम्नलिखित पीस ऑफ़ कोड का आउटपुट क्या होगा ?<break-line><break-line>What is the output of the following piece of code?<pre><code>a=list((45,)*4)
print(a)</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code?<pre><code>list1 = [1, 2, 3, 4]
list2 = [5, 6, 7, 8]
print(len(list1 + list2))</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code?<pre><code>a=[14,52,7]
b=a.copy()
b is a</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [5, 4, 3, 2, 1]
x.extend(x)
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 = m['Play']
print(n)</code></pre>