निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code ?<pre><code>import numpy as np
a = np.array([[1,2,3]])
print(a.ndim)</code></pre>
निम्नलिखित कोड खंड क्या प्रिंट करेगा?<break-line><break-line>What will the following code fragment print?<pre><code>a = True
b = False
c = False
if a or b and c:
print('HELLO')
else:
print('hello')</code></pre>
निम्नलिखित में से कौन सी संख्या निम्नलिखित कोड द्वारा कभी भी उत्पन्न नहीं की जा सकती है:<break-line><break-line>Which of the following numbers can never be generated by the following code:<pre><code>random.randrange(0, 50)</code></pre>
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<pre><code>x = 'abcd'
for i in range(x):
print(i)</code></pre>