page-banner
Python M3-R5.1 MCQs SET-1
Q6.
निम्नलिखित पायथन कोड का मूल्य क्या है?<break-line><break-line>What is the value of the following Python code?<break-line><break-line><pre><code>print(36 / 4)</code></pre>
A. 9
B. 9.0
C. 4
D. 4.0
View Answer
Q7.
निम्नलिखित पायथन कोड का आउटपुट क्या है?<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>
A. 3
B. 0
C. 3.3
D. त्रुटि / Error
View Answer
Q8.
निम्नलिखित कोड का परिणाम क्या है?<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>
A. 1
B. 2
C. 3
D. 0
View Answer
Q9.
निम्नलिखित कोड का परिणाम क्या है?<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>
A. {'c'}
B. {'a','b','c','d','e','f'}
C. {c}
D. इनमें से कोई नहीं / None of these
View Answer
Q10.
एक विस्तृत फ्लो चार्ट को ......... कहा जाता है।<break-line><break-line>A detailed flow chart is called as ...........
A. स्टैक / Stack
B. माइक्रो / micro
C. मैक्रो / macro
D. यूनियन / union
View Answer