q.pop(1) के बाद सूची में क्या आइटम होंगे?<break-line><break-line>What will be the items of list q after q.pop(1) if<pre><code>q = [3, 4, 5, 20, 5, 25, 1, 3]</code></pre>
निम्नलिखित में से किस डेटा प्रकार में डुप्लीकेट आइटम की अनुमति नहीं है?<break-line><break-line>In which of the following data types are duplicate items not allowed?
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<pre><code>a = set('dcma')
b = set('mlpc')
print(a ^ b)</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<pre><code>dict = {"Joey": 1, "Rachel": 2}
dict.update({"Phoebe": 2})
print(dict)</code></pre>