🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

Introduction to Python

Question: 151 Report Error

किस प्रकार की error में interpreter प्रोग्राम को चलाता नहीं और सीधे error देता है

For which type of error does the interpreter halt and report the error but does not execute the program

A)
B)
C)
D)

Question: 152 Report Error

किस प्रकार की error में प्रोग्राम चलता है लेकिन error पर रुक कर Exception देता है?

For which type of error does the interpreter run the program but halts when the error occurs and reports an Exception

A)
B)
C)
D)

Question: 153 Report Error

निम्न में से Python का कौन-सा संस्करण दिसंबर 2008 में जारी किया गया था

Which version of Python was released in December 2008 by Python.org

A)
B)
C)
D)

Question: 154 Report Error

Python फाइलें किस एक्सटेंशन में सेव होती हैं

Python files are saved with the extension as ...

A)
B)
C)
D)

Question: 155 Report Error

IDLE का पूरा नाम क्या है

IDLE stands for ...

A)
B)
C)
D)

Question: 156 Report Error

स्क्रीन पर संदेश दिखाने के लिए कौन-सा function उपयोग होता है

The function to display a specified message on the screen is

A)
B)
C)
D)

Question: 157 Report Error

निम्न में से Python में assignment operator कौन-सा है

Which of the following is an assignment operator in Python?

A)
B)
C)
D)

Question: 158 Report Error

Python में comment किस symbol से शुरू होता है

Comments in Python begin with

A)
B)
C)
D)

Question: 159 Report Error

यूज़र इनपुट लेने के लिए कौन-सा function उपयोग होता है

A user-specified value can be assigned with this function

A)
B)
C)
D)

Question: 160 Report Error

Python में user input किस रूप में पढ़ा जाता है

User input is read as ...

A)
B)
C)
D)

Question: 161 Report Error

print() function आउटपुट के अंत में कौन-सा अदृश्य character जोड़ता है

print() function adds this invisible character by default at the end of line

A)
B)
C)
D)

Question: 162 Report Error

print() function आउटपुट के अंत में कौन-सा अदृश्य character जोड़ता है

print() function adds this invisible character by default at the end of line

A)
B)
C)
D)

Question: 163 Report Error

Python में 12.5 का data type क्या है

What is the data type of the value 12.5 in Python

A)
B)
C)
D)

Question: 164 Report Error

यदि इनपुट 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: '))
A)
B)
C)
D)

Question: 165 Report Error

निम्नलिखित कथनों के बाद आउटपुट क्या होगा

What will be the output after the following statements

x = 'Python 3 MCQ' 
print(x.islower())
A)
B)
C)

Question: 166 Report Error

निम्नलिखित कथनों के बाद आउटपुट क्या होगा

What will be the output after the following statements

x = 'Today is not a nice day' 
x = 'Today is a nice day' 
print(x)
A)
B)
C)
D)

Question: 167 Report Error

पायथन भाषा का नाम किसके नाम पर रखा गया

Python language was named after

A)
B)
C)
D)

Question: 168 Report Error

पायथन प्रोग्रामिंग भाषा में कितने कीवर्ड मौजूद हैं

How many keywords present in the python programming language

A)
B)
C)
D)

Question: 169
Verified by Expert

लूप के अन्दर continue क्या करता है

What does continue do inside a loop

A)
B)
C)
D)
Explanation
The number of keywords in the Python programming language varies depending on the version, but the most appropriate choice from your list is (C) 33, which was the standard count for Python 3.7 || 33 Keywords: Standard for Python 3.7 || 35 Keywords: Standard for Python 3.11 and 3.12.

Correct Answer: B) Skips current iteration


Question: 170 Report Error

IDLE शेल में, निम्नलिखित में से कौन सा कथन SyntaxError देता है

In IDLE shell, which of the following statements gives SyntaxError

A)
B)
C)
D)

Question: 171 Report Error

निम्नलिखित कथन के बाद किस प्रकार की त्रुटि दिखाई देगी

What type of error will be shown after the following statement

a = 'Python' + 3
A)
B)
C)
D)

Question: 172 Report Error

निम्नलिखित में से कौन सा पायथन में डेटा प्रकार नहीं है

Which of the following is not a data type in python

A)
B)
C)
D)

Question: 173
Verified by Expert

निम्नलिखित में से कौन सा पायथन में डेटा प्रकार नहीं है

Which of the following is not a data type in python

A)
B)
C)
D)

Question: 174
Verified by Expert

आप वेरिएबल a को लंबाई 1 का टपल कैसे असाइन करते हैं ?

How do you assign a tuple of length 1 to the variable a ?

A)
B)
C)
D)

Question: 175
Verified by Expert

कई भाषाओं में { } grouping के लिए उपयोग होते हैं, लेकिन Python में यह grouping से की जाती है।

Braces { } are used for grouping in many languages, but in Python this grouping is done using

A)
B)
C)
D)

Question: 176
Verified by Expert

इसका परिणाम क्या है

What is the result of

len("Python")
A)
B)
C)
D)
Explanation
In Python, the built-in len() function returns the number of items in an object. When the object is a string, it counts the total number of characters

Correct Answer: A) 6


Question: 177
Verified by Expert

निम्नलिखित में से कौन सा परिवर्तनशील डेटा प्रकार है

Which one of the following is mutable data type

A)
B)
C)
D)

Question: 178
Verified by Expert

Python में list क्या है

What is a Python list

A)
B)
C)
D)

Question: 179
Verified by Expert

पायथन भाषा का विकास किसके द्वारा किया गया था

Python language was developed by

A)
B)
C)
D)

Question: 180
Verified by Expert

इसका आउटपुट क्या होगा

What will be the output of

print("O" + " Level")
A)
B)
C)
D)
Explanation
The output of the command print("O" + " Level") is O Level.

Correct Answer: A) O Level


Question: 181
Verified by Expert

पायथन में इंडेंटेशन का उपयोग किस लिए किया जाता है

What is indentation used for in Python

A)
B)
C)
D)

Question: 182
Verified by Expert

Python variable में letters, numbers और _________ होते हैं। आप ____________ का उपयोग नहीं कर सकते

A Python variable can contain letters, numbers and ________ You cannot use ____________.

A)
B)
C)
D)
Explanation
In Python, variables (also known as identifiers) must follow specific naming conventions to be recognized by the interpreter. A variable name can include letters, numbers, and underscores, but it is strictly forbidden to use keywords (reserved words) as variable names.

Correct Answer: A) Underscore, Keywords


Question: 183
Verified by Expert

शब्दकोश में है

Dictionary has

A)
B)
C)
D)

Question: 184
Verified by Expert

Python variable names में कौन-सा special symbol allowed है

Which special symbol is allowed in Python variable names

A)
B)
C)
D)

Question: 185
Verified by Expert

पायथन किस भाषा में लिखा गया है

In which language is Python written

A)
B)
C)
D)

Question: 186
Verified by Expert

Python Tokens क्या होते हैं

What are Python Tokens

A)
B)
C)
D)

Latest Updates