course image

Programming and Problem Solving Through Python Online Test - O Level

Mastering Python programming for your O Level exams is essential for developing a strong foundation in coding and problem-solving. The O Level Python Programming Online Test offers a convenient and effective way to assess and enhance your programming skills. This test covers fundamental concepts such as data types, control structures, functions, and object-oriented programming, tailored to meet the specific requirements of the O Level curriculum.

By engaging with this online test, you gain valuable practice in writing and debugging Python code, receiving instant feedback to pinpoint areas for improvement. The flexibility of online testing allows you to study at your own pace, reinforcing your understanding and boosting your confidence as you prepare for your exams. With targeted practice and comprehensive coverage, this online test is a crucial resource for excelling in your O Level Python programming assessment.

Take our NIELIT O Level online test now and get ready to excel in your Programming and problem solving through python exam!


Q.1 किसी identifier की अधिकतम संभव लंबाई क्या है?

What is the maximum possible length of an identifier?

A)
B)
C)
D)

Q.2 Python में नीचे दिए गए symbol का प्रयोग किस लिए किया जाता है ? (आयत)

What is the symbol given below used in Python? (Rectangle Shape)

A)
B)
C)
D)

Q.3 जब किसी फंक्शन को किसी क्लास के अंदर परिभाषित किया जाता है तो उसे क्या कहते हैं?

What is it called when a function is defined inside a class?

A)
B)
C)
D)

Q.4 निम्नलिखित में से कौन चर(variable) नहीं हो सकता है?

Which of the following cannot be a variable?

A)
B)
C)
D)

Q.5 डिक्शनरी की कुंजियों को मानों का उपयोग करके एक्सेस किया जा सकता है

The keys of the dictionary can be accessed using the values

A)
B)
C)
D)

Q.6 निम्नलिखित कथन में क्या समस्या है?

What is the problem with the following statement?

100=grade
A)
B)
C)
D)

Q.7 किसी फंक्शन के बाहर परिभाषित वेरिएबल को क्या कहते हैं?

What is a variable defined outside a function called?

A)
B)
C)
D)

Q.8 True = False, अगर True का मान print करवाया जाए तो आउटपुट क्या होगा ?

True = False, if the value of True is printed then what will be the output?

A)
B)
C)
D)

Q.9 वास्तव में प्रोग्राम लिखने से पहले कागज पर प्रोग्राम के तर्क से गुजरने की प्रक्रिया को ____ कहा जाता है।

The process of walking through a program’s logic on paper before you actually writes the program is called ____.

A)
B)
C)
D)

Q.10 फ़्लोचार्ट में प्रोग्राम के अन्य भागों या कनेक्टर्स के साथ प्रोग्राम लिंक को दर्शाया जाता है

Program link with other parts of program or connectors in flowchart are represented by

A)
B)
C)
D)

Q.11 पायथन 3.0 संस्करण(version) किस वर्ष विकसित किया गया था?

In which year was Python 3.0 version developed?

A)
B)
C)
D)

Q.12 पायथन को ___ जाना जाता है:

Python is known as:

A)
B)
C)
D)

Q.13 अभिव्यक्ति का आउटपुट क्या है: 3*1**3

What is the output of the expression : 3*1**3

A)
B)
C)
D)

Q.14 निम्नलिखित पायथन कोड का आउटपुट क्या होगा print(2**3)

What will be the output of the following Python code print(2**3)

A)
B)
C)
D)

Q.15 पायथन में पूर्ण संख्या को संग्रहीत करने के लिए आप किस डेटा प्रकार का उपयोग करेंगे?

What data type would you use to store a whole number in Python?

A)
B)
C)
D)

Q.16 /* */ का प्रयोग Python कोड में COMMENTS डालने के लिए किया जाता है।

/* */ is used to insert COMMENTS in Python code.

A)
B)
C)
D)

Q.17 Docstring एक स्ट्रिंग अक्षर है जिसे कुछ प्रोग्राम element के specification को प्रदान करने के लिए ट्रिपल कोट्स द्वारा दर्शाया जाता है।

Docstring is a string literal represented by triple quotes to provide the specification of some program element.

A)
B)
C)
D)

Q.18 क्या Tuple की value change की जा सकती है ?

Can the value of Tuple be changed?

A)
B)
C)
D)

Q.19 निम्नलिखित में से कौन से कथन सत्य हैं?

Which of the following statements is true?

A)
B)
C)
D)

Q.20 निम्नलिखित कोड का आउटपुट है

Output of the following code is

print(40,50,60,sep="!",end=",")
A)
B)
C)
D)

Next Page