निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>from math import pow
print(math.pow(2,3))</code></pre>
A.Nothing is printed
B.8
C.Error, method pow doesn’t exist in math module
D.Error, the statement should be: print(pow(2, 3))
Correct Answer: Error, method pow doesn’t exist in math module
Q17.
निम्नलिखित expression का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression ?<pre><code>x = 4
print(x << 2)</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>import numpy as np
y = np.array([[11, 12, 13, 14], [32, 33, 34, 35]])
print(y.ndim)</code></pre>
एक कंप्यूटर प्रोग्राम जो कंप्यूटर की गतिविधि का प्रबंधन और नियंत्रण करता है:<break-line><break-line>A computer program that manages and controls a computer's activity :
निम्नलिखित expression का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression ?<pre><code>print(7//2)
print(-7//2)</code></pre>