निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of following code ?<break-line><break-line><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>The function can be called in the program by writing function name followed by __________.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code ?<break-line><break-line><pre><code>from math import *
ceil(3.4)</code></pre>