निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = [25, 34, 70, 63]
n = m[2] - m[0]
print(n)</code></pre>
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = [25, 34, 70, 63]
n = str(m[1]) + str(m[2])
print(n)</code></pre>
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = [90, 'A', 115, 'B', 250]</code></pre>
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = 'World Wide Web'</code></pre>
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'}</code></pre>