निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>ms = ('A', 'D', 'H', 'U', 'N', 'I', 'C')
print(ms[1:4])</code></pre>
निम्नलिखित पायथन प्रोग्राम का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python program ?<pre><code>def addItem(listParam):
listParam += [1]
mylist = [1, 2, 3, 4]
addItem(mylist)
print(len(mylist))</code></pre>