page-banner
Python M3-R5.1 MCQs SET-1
Q6.
निम्नलिखित पायथन कोड का मूल्य क्या है?

What is the value of the following Python code?

print(36 / 4)
A. 9
B. 9.0
C. 4
D. 4.0
View Answer
Q7.
निम्नलिखित पायथन कोड का आउटपुट क्या है?

What is the output of the following Python code?

print(5*(2//3))
A. 3
B. 0
C. 3.3
D. त्रुटि / Error
View Answer
Q8.
निम्नलिखित कोड का परिणाम क्या है?

What is the output of the following code?

import numpy as np
a = np.array([1,2,3])
print(a.ndim)
A. 1
B. 2
C. 3
D. 0
View Answer
Q9.
निम्नलिखित कोड का परिणाम क्या है?

What is the output of the following code?

a = set('abc')
b = set('cdef')
print(a&b)
A. {'c'}
B. {'a','b','c','d','e','f'}
C. {c}
D. इनमें से कोई नहीं / None of these
View Answer
Q10.
एक विस्तृत फ्लो चार्ट को ......... कहा जाता है।

A detailed flow chart is called as ...........
A. स्टैक / Stack
B. माइक्रो / micro
C. मैक्रो / macro
D. यूनियन / union
View Answer

Create Account