निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of following code?<pre><code>a1 = {1:"A",2:"B",3:"C"}
b1 = {4:"D",5:"E"}
b1.update(a1)
print(b1)</code></pre>
निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of following code?<pre><code>A=[[1,2,3],[4,5,6],[7,8,9]]
print(A[1][:])</code></pre>
निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<pre><code>t = (2, 3, 4, 3.5, 5, 6)
print(sum(t) + t.count(2))</code></pre>
"john" को डिलीट करने के लिए कौन सी कमांड उपयोग करेंगे?<break-line><break-line>To delete the entry for “john” from dictionary d = {"john":40, "peter":45}, use: