page-banner
Python M3-R5.1 MCQs SET-18
Q16.
NumPy मॉड्यूल कैसे आयात करें?

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.
पायथन उपयोग करता है:

Python uses:
A. compiler
B. assembler
C. interpreter
D. Linker only
View Answer
Q18.
निम्नलिखित में से कौन सा पायथन में गलत फाइल हैंडलिंग मोड है

Which of the following is incorrect file handling mode in Python
A. wb+
B. ab
C. xr
D. ab+
View Answer
Q19.
Python 3 में यूजर से इनपुट स्वीकार करने के लिए कौन से फंक्शन का उपयोग किया जाता है

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.
उपरोक्त पायथन कोड का आउटपुट क्या होगा?

What will be the output of above Python code?
d1={"abc":5,"def":6,"ghi":7}
print(d1[0])
A. abc
B. 5
C. {"abc":5}
D. Error
View Answer

Create Account