Introduction to Python
Q.1 Python programming का विकास किसने किया ?
Who developed Python programming?
Q.2 /* */ का प्रयोग Python कोड में COMMENTS डालने के लिए किया जाता है।
/* */ is used to insert COMMENTS in Python code.
Q.3 निम्न में से कौन सा एक invalid variable है?
Which of the following is an invalid variable?
Q.4 sys.argv में प्रत्येक element का प्रकार क्या है?
What is the type of each element in sys.argv?
Q.5 निम्नलिखित में से कौन से कथन सत्य हैं?
Which of the following statements is true?
Q.6 निम्नलिखित में से कौन सा python language में एक कीवर्ड नहीं है?
Which of the following is not a keyword in python language?
Q.7 pow(x,y) के लिए सही ऑपरेटर कौन सा है?
Which is the correct operator for pow(x,y)?
Q.8 inf का return type (return type of inf) क्या होता है?
What is the return type of inf?
Q.9 निम्नलिखित में से कौन एक वैध स्ट्रिंग स्थिरांक(valid string constant in python) है?
Which of the following is a valid string constant in python?
Q.10 रिलेशनल ऑपरेशन का परिणाम हमेशा होता है
The result of a relational operation is always
Q.11 यदि हम values को key और value के संदर्भ में store करना चाहते हैं तो हम किस data type का उपयोग करते हैं।
If we want to store values in terms of key and value then what data type do we use.
Q.12 हम पायथन भाषा में कोड के एक ब्लॉक को परिभाषित करने के लिए क्या उपयोग करते हैं ?
What do we use to define a block of code in Python language?
Q.13 पायथन प्रोग्रामिंग लैंग्वेज में निम्नलिखित में से कौन सा गलत है ?
Which of the following is wrong in Python programming language?
Q.14 set में duplicate items की entry होती है
Duplicate items are entered in the set.
Q.15 निम्नलिखित में से python के बारे में कौन सही है ?
Which of the following is correct about python?
Q.16 पायथन के लिए ,निम्नलिखित में से कौन सा environment variable Python interpreter को बताता है कि एक प्रोग्राम में import की गयी मॉड्यूल फाइलों को कहाँ locate करना है
For Python, which of the following environment variables tells the Python interpreter where to locate module files imported into a program?
Q.17 निम्न में से कौन सा डेटा प्रकार पायथन में समर्थित नहीं है ?
Which of the following data types is not supported in Python?
Q.18 Python case sensitive है जब identifiers के साथ डील करता है ?
Is Python case sensitive when dealing with identifiers?
Q.19 Mathematical operation स्ट्रिंग पर किये जा सकते है ?
Mathematical operations can be performed on strings?
Q.20 जोड़ और घटाव का वरीयता स्तर (precedence level)एक ही है |
The precedence level of addition and subtraction is the same.
Q.21 expression int(x) का तात्पर्य है कि variablex को integer में बदल दिया जाता है।
The expression int(x) implies that the variablex is converted to an integer.
Q.22 Python Functional Programming को Support नहीं करती है|
Python does not support Functional Programming.
Q.23 क्या Python में, Function को argument के रूप में पास कर सकते है?
Can we pass a function as an argument in Python?
Q.24 Python Variable व Expression का प्रकार (type) ________ तय (decide) होता है
The type of Python variable and expression is decided by ________.
Q.25 python फाइल को किस फाइल एक्सटेंशन के साथ सेव करते है ?
With which file extension is the python file saved?
Q.26 ________टूल जो बग खोजने या स्थिर विश्लेषण ( static analysis ) करने में मदद करता हैं?
________tool that helps in finding bugs or performing static analysis?
Q.27 Python में, Mutable built-in Data-type है
In Python, Mutable is a built-in data-type.
Q.28 एक पायथन documentation स्ट्रिंग को docstring के रूप में जाना जाता है
A Python documentation string is known as a docstring.
Q.29 पीईपी (PEP) का मतलब है
What does PEP mean?
Q.30 Python Free, open source, Statically typed, Interpreted व Portable language है
Python is free, open source, statically typed, interpreted and portable language.
Q.31 python में variable बनाते समय किस symbol का use नहीं कर सकते ?
Which symbol cannot be used while creating a variable in python?
Q.32 string से एक्स्ट्रा space remove करने के लिए कौन सा method नहीं है ?
Which is not a method to remove extra space from a string?
Q.33 क्या string को index value से access किया जा सकता है ?
Can string be accessed by index value?
Q.34 string में slicing करने के लिए कौन सा statement सही नहीं है| a="examjila"
Which statement is not correct for slicing a string? a="examjila"
Q.35 python में input() function क्या return करता है ?
What does the input() function return in python?
Q.36 python में typecasting कितने प्रकार की होती है ?
How many types of typecasting are there in python?
Q.37 integer value को string में बदलने के लिए किस function का प्रयोग करते है ?
Which function is used to convert integer value to string?
Q.38 python में PIP का क्या काम है ?
What is the function of PIP in python?
Q.39 python में equality operator कौन से है ?
What are equality operators in python?
Q.40 Python में ________ एक NULL statement है|
________ is a NULL statement in Python.
Q.41 Tower of Honoi puzzle को __________ के द्वारा बनाया गया|
Tower of Honoi puzzle was created by __________.
Q.42 पायथन 3.0 संस्करण(version) किस वर्ष विकसित किया गया था?
In which year was Python 3.0 version developed?
Q.43 पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए हम किसका उपयोग करते हैं?
What do we use to define a block of code in Python language?
Q.44 डेटा प्रकार (1) क्या है?
What is data type (1)?
Q.45 Docstring एक स्ट्रिंग अक्षर है जिसे कुछ प्रोग्राम element के specification को प्रदान करने के लिए ट्रिपल कोट्स द्वारा दर्शाया जाता है।
Docstring is a string literal represented by triple quotes to provide the specification of some program element.
Q.46 Python source code को compiler किस code में परिवर्तित करता है ?
Into which code does the compiler convert the Python source code?
Q.47 Python Object-Oriented और Procedural paradigms में प्रोग्रामिंग की allows देता है।
Python allows programming in Object-Oriented and Procedural paradigms.
Q.48 एक variable नाम एक letter या underscore character से शुरू होना चाहिए।
A variable name must begin with a letter or an underscore character.
Q.49 Booleans की दो value होती हैं: True or False|
Booleans have two values: True or False.
Q.50 Debugging का उपयोग किया जाता है|
Debugging is used.