कोडिंग के दौरान सॉफ्टवेयर की गलतियों को __________ के रूप में जाना जाता है।<break-line><break-line>Software mistakes during coding are known as __________.
निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code ?<pre><code>import numpy as np
a = np.array([[1,2,3],[4,5,6],[7,8,9]])
print(a.shape)</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code ?<pre><code>def say(message, times = 1):
print(message * times)
say('Hello')
say('World', 5)</code></pre>
समांतर चतुर्भुज द्वारा प्रदर्शित की जाने वाली क्रिया को __________ कहा जाता है।<break-line><break-line>The operation represented by a parallelogram is called as __________.