निम्नलिखित पायथन कोड का मूल्य क्या है?<break-line><break-line>What is the value of the following Python code?<break-line><break-line><pre><code>print(36 / 4)</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following Python code?<break-line><break-line><pre><code>print(5*(2//3))</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<break-line><break-line><pre><code>import numpy as np
a = np.array([1,2,3])
print(a.ndim)</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<break-line><break-line><pre><code>a = set('abc')
b = set('cdef')
print(a&b)</code></pre>