निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = '40' + '01'
print(m)</code></pre>
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 81 + 34
print(m)</code></pre>
निम्नलिखित कथनों के बाद n का डेटा प्रकार क्या होगा यदि उपयोगकर्ता ने दर्ज किया है संख्या 45?<break-line><break-line>What will be the data type of n after the following statements if the user entered the number 45?<pre><code>m = input('Enter a number: ')
n = int(m)</code></pre>
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या है?<break-line><break-line>What is the data type of m after the following statement?<pre><code>m = (41, 54, 23, 68)</code></pre>
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या है?<break-line><break-line>What is the data type of m after the following statement?<pre><code>m = ['July', 'September', 'December']</code></pre>