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 इस असाइनमेंट के बाद वेरिएबल x का डेटा प्रकार क्या होगा:
What will be the data type of the variable x after this assignment:
x = 3.5
Q.2 पायथन 3.0 संस्करण(version) किस वर्ष विकसित किया गया था?
In which year was Python 3.0 version developed?
Q.3 Python में नीचे दिए गए symbol का प्रयोग किस लिए किया जाता है ?
What is the symbol given below used in Python?
Q.4 trunc() function की रिटर्न वैल्यू क्या है?
What is the return value of trunc() function?
Q.5 विकसित की गई पहली विशुद्ध रूप से ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग भाषा कौन सी थी?
Which was the first purely object oriented programming language developed?
Q.6 पायथन को ___ जाना जाता है:
Python is known as:
Q.7 किसी फंक्शन के बाहर परिभाषित वेरिएबल को क्या कहते हैं?
What is a variable defined outside a function called?
Q.8 OOP का आविष्कार किसने किया?
Who invented OOP?
Q.9 कंप्यूटर को निर्देशित करने वाले निर्देशों के समूह को कहा जाता है
Group of instructions that directs a computer is called
Q.10 step by step program की Examination को Stepping कहा जाता है
Examination of step by step program is called Stepping.
Q.11 वास्तव में प्रोग्राम लिखने से पहले कागज पर प्रोग्राम के तर्क से गुजरने की प्रक्रिया को ____ कहा जाता है।
The process of walking through a program’s logic on paper before you actually writes the program is called ____.
Q.12 sys.argv में प्रत्येक element का प्रकार क्या है?
What is the type of each element in sys.argv?
Q.13 पायथन में private identifier का प्रतिनिधित्व कैसे करें?
How to represent private identifier in Python?
Q.14 _______ दी गई समस्या का सचित्र प्रतिनिधित्व(Pictorial Presentation) प्रदान करता है।
_______ provides pictorial representation of the given problem.
Q.15 print(0.1 + 0.2 > 0.3) का आउटपुट क्या है?
What is the output of print(0.1 + 0.2 > 0.3)?
Q.16 निम्नलिखित में से किसकी अभिव्यक्ति(expression) में सर्वोच्च प्राथमिकता(highest precedence ) है?
Which of the following expressions has the highest priority?
Q.17 निम्नलिखित कथन में क्या समस्या है?
What is the problem with the following statement?
100=grade
Q.18 निम्नलिखित कोड का आउटपुट है
Output of the following code is
print(40,50,60,sep="!",end=",")
Q.19 निम्नलिखित पायथन कोड का आउटपुट क्या है?
What is the output of the following Python code?
print(int())
Q.20 OOP की कौन सी विशेषता कोड की पुन: प्रयोज्यता को दर्शाती है?
Which Feature of OOP illustrated the code reusability?