page-banner
Python M3-R5.1 MCQs SET-3
Q16.
पायथन भाषा में, निम्नलिखित में से कौन सा ऑपरेटर k को पावर I तक बढ़ाने के लिए सही विकल्प है?<break-line><break-line>In python language, which of the following operators is the correct option for raising k to the power I?
A. k^1
B. k**1
C. k^^1
D. k^*1
View Answer
Q17.
निम्नलिखित में से कौन सा पायथन में एक वैध अंकगणितीय ऑपरेटर है?<break-line><break-line>Which of the following is a valid arithmetic operator in Python?
A. //
B. ?
C. <
D. And
View Answer
Q18.
यदि फाइल मौजूद नहीं है तो कौन सा मोड एक नई फाइल बनाता है?<break-line><break-line>Which mode creates a new file if the file does not exist?
A. write mode
B. read mode
C. append mode
D. Both (A) and (C)
View Answer
Q19.
NumPY का अर्थ है:<break-line><break-line>NumPY stands for:
A. Numbering Python
B. Number In Python
C. Numerical Python
D. None of the above
View Answer
Q20.
निम्नलिखित में से कौन फ़ाइल (file object 'f') की संपूर्ण सामग्री को पढ़ेगा?<break-line><break-line>Which of the following will read the entire content of file (file object 'f')?
A. f.reads()
B. f.read(all)
C. f.read()
D. f.read(*)
View Answer