निम्नलिखित सूड़ो कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following pseudo-code ?<pre><code>Integer a
Set a = 4
do
print a + 2
a = a - 1
while (a not equals 0)
end while</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<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>An algorithm that calls itself directly or indirectly is called as __________.
randint( ) फ़ंक्शन का उपयोग करने के लिए कौन सा मॉड्यूल आयात किया जाना है?<break-line><break-line>Which module is to be imported for using randint( ) function ?
प्रोग्रामर की आवश्यकता के अनुसार किसी कार्य को प्राप्त करने के लिए परिभाषित फंक्शन को __________ कहा जाता है।<break-line><break-line>Function defined to achieve some task as per the programmer’s requirement is called a __________.