page-banner
Python M3-R5.1 MCQs SET-18
Q16.
NumPy मॉड्यूल कैसे आयात करें?<break-line><break-line>How to import NumPy module?
A. Import numpy *
B. Import numpy as my_numpy
C. Import numpy as np
D. All of the above
View Answer
Q17.
पायथन उपयोग करता है:<break-line><break-line>Python uses:
A. compiler
B. assembler
C. interpreter
D. Linker only
View Answer
Q18.
निम्नलिखित में से कौन सा पायथन में गलत फाइल हैंडलिंग मोड है<break-line><break-line>Which of the following is incorrect file handling mode in Python
A. wb+
B. ab
C. xr
D. ab+
View Answer
Q19.
Python 3 में यूजर से इनपुट स्वीकार करने के लिए कौन से फंक्शन का उपयोग किया जाता है<break-line><break-line>In Python 3, which functions are used to accept input from the user
A. input()
B. raw_input()
C. rawinput()
D. string()
View Answer
Q20.
उपरोक्त पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of above Python code?<pre><code>d1={"abc":5,"def":6,"ghi":7} print(d1[0])</code></pre>
A. abc
B. 5
C. {"abc":5}
D. Error
View Answer