निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<pre><code>a = {1: "A", 2: "B", 3: "C"}
b = {4: "D", 5: "E"}
a.update(b)
print(a)</code></pre>
निम्नलिखित पाइथन कोड का परिणाम क्या है?<break-line><break-line>What will be the output of the following Python code?<pre><code>len(["hello", 2, 4, 6])</code></pre>
Correct Answer: Elements of lists are stored in contagious memory location.
Q44.
लिस्ट 1 [4, 2, 2, 4, 5, 2, 1, 0] है, कौन सा स्लाइसिंग ऑपरेशन सही है?<break-line><break-line>Suppose list1 is [4, 2, 2, 4, 5, 2, 1, 0], which of the following is correct syntax for slicing?
निम्नलिखित पाइथन कोड का परिणाम क्या है?<break-line><break-line>What will be the output of the following Python code?<pre><code>d1 = { "abc" : 5, "def" : 6, "ghi" : 7 }
print(d1[0])</code></pre>