निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following ?<pre><code>import numpy as np
a = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]])
print(a[2,2])</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>def add(a, b):
return a+5, b+5
result = add(3, 2)
print(result)</code></pre>