Introduction to Python
किस प्रकार की error में interpreter प्रोग्राम को चलाता नहीं और सीधे error देता है
For which type of error does the interpreter halt and report the error but does not execute the program
किस प्रकार की error में प्रोग्राम चलता है लेकिन error पर रुक कर Exception देता है?
For which type of error does the interpreter run the program but halts when the error occurs and reports an Exception
निम्न में से Python का कौन-सा संस्करण दिसंबर 2008 में जारी किया गया था
Which version of Python was released in December 2008 by Python.org
Python फाइलें किस एक्सटेंशन में सेव होती हैं
Python files are saved with the extension as ...
स्क्रीन पर संदेश दिखाने के लिए कौन-सा function उपयोग होता है
The function to display a specified message on the screen is
निम्न में से Python में assignment operator कौन-सा है
Which of the following is an assignment operator in Python?
Python में comment किस symbol से शुरू होता है
Comments in Python begin with
यूज़र इनपुट लेने के लिए कौन-सा function उपयोग होता है
A user-specified value can be assigned with this function
Python में user input किस रूप में पढ़ा जाता है
User input is read as ...
print() function आउटपुट के अंत में कौन-सा अदृश्य character जोड़ता है
print() function adds this invisible character by default at the end of line
print() function आउटपुट के अंत में कौन-सा अदृश्य character जोड़ता है
print() function adds this invisible character by default at the end of line
Python में 12.5 का data type क्या है
What is the data type of the value 12.5 in Python
यदि इनपुट 64 है तो निम्नलिखित कथन के बाद x का डेटा प्रकार क्या होगा
What will be the data type of x after the following statement if input entered is 64
x = float(input('Enter a number: ')) निम्नलिखित कथनों के बाद आउटपुट क्या होगा
What will be the output after the following statements
x = 'Python 3 MCQ'
print(x.islower()) निम्नलिखित कथनों के बाद आउटपुट क्या होगा
What will be the output after the following statements
x = 'Today is not a nice day'
x = 'Today is a nice day'
print(x) पायथन भाषा का नाम किसके नाम पर रखा गया
Python language was named after
पायथन प्रोग्रामिंग भाषा में कितने कीवर्ड मौजूद हैं
How many keywords present in the python programming language
लूप के अन्दर continue क्या करता है
What does continue do inside a loop
Correct Answer: B) Skips current iteration
IDLE शेल में, निम्नलिखित में से कौन सा कथन SyntaxError देता है
In IDLE shell, which of the following statements gives SyntaxError
निम्नलिखित कथन के बाद किस प्रकार की त्रुटि दिखाई देगी
What type of error will be shown after the following statement
a = 'Python' + 3 निम्नलिखित में से कौन सा पायथन में डेटा प्रकार नहीं है
Which of the following is not a data type in python
निम्नलिखित में से कौन सा पायथन में डेटा प्रकार नहीं है
Which of the following is not a data type in python
आप वेरिएबल a को लंबाई 1 का टपल कैसे असाइन करते हैं ?
How do you assign a tuple of length 1 to the variable a ?
कई भाषाओं में { } grouping के लिए उपयोग होते हैं, लेकिन Python में यह grouping से की जाती है।
Braces { } are used for grouping in many languages, but in Python this grouping is done using
इसका परिणाम क्या है
What is the result of
len("Python") Correct Answer: A) 6
निम्नलिखित में से कौन सा परिवर्तनशील डेटा प्रकार है
Which one of the following is mutable data type
Python में list क्या है
What is a Python list
पायथन भाषा का विकास किसके द्वारा किया गया था
Python language was developed by
इसका आउटपुट क्या होगा
What will be the output of
print("O" + " Level") Correct Answer: A) O Level
पायथन में इंडेंटेशन का उपयोग किस लिए किया जाता है
What is indentation used for in Python
Python variable में letters, numbers और _________ होते हैं। आप ____________ का उपयोग नहीं कर सकते
A Python variable can contain letters, numbers and ________ You cannot use ____________.
Correct Answer: A) Underscore, Keywords
शब्दकोश में है
Dictionary has
Python variable names में कौन-सा special symbol allowed है
Which special symbol is allowed in Python variable names
पायथन किस भाषा में लिखा गया है
In which language is Python written
Python Tokens क्या होते हैं
What are Python Tokens