numpy array के डाटा टाइप को खोजने के लिए किस एट्रिब्यूट का प्रयोग किया जाता है ?<break-line><break-line>Which attribute is used to find the data type of numpy array?
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<break-line><break-line>What will be output for the following code ?<break-line><break-line><pre><code>import numpy as np
a = np.array([1,2,1,5,8])
b = np.array([0,1,5,4,2])
c = a + b
c = c*a
print(c[2])</code></pre>
नीचे दिए गए प्रोग्राम का आउटपुट क्या है?<break-line><break-line>What is the output of the below program ?<break-line><break-line><pre><code>def func(a, b=5, c=10):
print('a is', a, 'and b is', b, 'and c is', c)
func(3, 7)
func(25, c=24)
func(c=50, a=100)</code></pre>
A.a is 7 and b is 3 and c is 10<break-line>a is 25 and b is 5 and c is 24<break-line>a is 5 and b is 100 and c is 50
B.a is 3 and b is 7 and c is 10<break-line>a is 5 and b is 25 and c is 24<break-line>a is 50 and b is 100 and c is 5
C.a is 3 and b is 7 and c is 10<break-line>a is 25 and b is 5 and c is 24<break-line>a is 100 and b is 5 and c is 50