निम्नलिखित expression किस मान का मूल्यांकन करता है?<break-line><break-line>What value does the following expression evaluate to ?<pre><code>print(5 + 8 * ((3* 5)-9) /10)</code></pre>
एक निश्चित संख्या में दोहराए जाने वाले ऑपरेशन __________ द्वारा किए जाते हैं।<break-line><break-line>Operations to be repeated a certain number of times are done by __________.
मेमोरी का कौन सा भाग सिस्टम फ़ंक्शन कॉल के पैरामीटर और लोकल वेरिएबल को संग्रहीत करता है?<break-line><break-line>Which part of the memory does the system store the parameter and local variables of a function call?
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following ?<pre><code>import numpy as np
a = np.array( [2, 3, 4, 5] )
b = np.arange(4)
print(a+b)</code></pre>
नीचे दिए गए प्रोग्राम का आउटपुट क्या है?<break-line><break-line>What is the output of below program ?<pre><code>def say(message, times = 1):
print(message * times)
say('Hello')
say('World', 5)</code></pre>