O Level Python Paper January 2026

Read the instructions carefully before you begin

100
Questions
120
Minutes
+1
Per correct
−0
Negative
  1. The test contains 100 questions, each with 4 options and only one correct answer.
  2. Scroll through questions on the left. Tap an option to mark it — it fills automatically on the OMR sheet on the right.
  3. On mobile, tap the round button to open the OMR sheet, and tap it again (or the close icon) to go back to questions.
  4. You can tap any bubble directly on the OMR sheet to jump straight to that question.
  5. The timer starts as soon as you click Start Test and cannot be paused.
  6. The test will auto-submit when the time runs out, so submit early if you finish sooner.
  7. Do not refresh or close the browser tab during the test.
  1. इस टेस्ट में 100 प्रश्न हैं, हर प्रश्न में 4 विकल्प हैं और केवल एक सही उत्तर है।
  2. बाईं ओर प्रश्न स्क्रॉल करें। विकल्प पर टैप करते ही वह दाईं ओर OMR शीट पर अपने आप भर जाएगा।
  3. मोबाइल पर, OMR शीट खोलने के लिए गोल बटन दबाएँ, वापस जाने के लिए फिर से दबाएँ या क्लोज़ आइकॉन पर टैप करें।
  4. आप OMR शीट पर किसी भी बबल पर सीधे टैप करके उस प्रश्न पर जा सकते हैं।
  5. "Start Test" पर क्लिक करते ही टाइमर शुरू हो जाएगा और इसे रोका नहीं जा सकता।
  6. समय समाप्त होने पर टेस्ट अपने आप सबमिट हो जाएगा, इसलिए जल्दी पूरा करने पर पहले सबमिट करें।
  7. टेस्ट के दौरान ब्राउज़र टैब को रिफ्रेश या बंद न करें।
The timer will start immediately after you click Start Test.
Candidate Roll: DS-14002
0/100 answered
120:00
1

'neilit' को 'Neilit' में convert करने के लिए कौन-सा Python method use किया जाता है?

Which Python method is used to convert 'neilit' into 'Neilit'?

2

What will be the output of the following Python code?

निम्न Python code का output क्या होगा?

L = [None] * 10
print(len(L))
3

Which of the following is not a file extension for text files?

निम्न में से कौन-सी टेक्स्ट फाइल की file extension नहीं है?

4

What does refactoring mean in programming?

प्रोग्रामिंग में refactoring का क्या अर्थ है?

5

What will be the output of the following Python code?

निम्न Python code का output क्या होगा?

import math
print(math.copysign(3, -1))
6

Which operator is used in Python to import modules from packages?

पैकेज से मॉड्यूल आयात करने के लिए पायथन में किस ऑपरेटर का उपयोग किया जाता है?

7

Which of the following is correct about pseudocode?

प्स्यूडोकोड के बारे में निम्न में से कौन सा सही है?

8

What is the output of 2^5 in Python?

Python में 2^5 का output क्या होगा?

9

What will be the output?

क्या output होगा?

def factorial(x)
  if x==0:
    return 1
else:
    return x*factorial(x-1)

print(factorial(3))
10

What will be the output of "hello" + 1 + 2 + 3?

“hello” + 1 + 2 + 3 का output क्या होगा?

11

Python provides a library to determine the type of an image, one such library is ____?

Python ऐसी कौन-सी library प्रदान करता है जो image के type को पता करने में मदद करती है?

12

What will be the value of 2*3*8**3*4?

2*3*8**3*4 का मान क्या होगा?

13

What is the concept of Indirect Recursion?

Indirect Recursion की अवधारणा क्या है?

14

What is the range of int32 data type in NumPy?

NumPy में int32 data type की range क्या है?

15

What is the formula to find standard deviation of an array using NumPy?

NumPy का उपयोग करके array का standard deviation निकालने का formula क्या है?

16

Hierarchy in a pseudocode can be shown by

Pseudocode में hierarchy को कैसे दिखाया जाता है

17

What does refactoring mean in programming

प्रोग्रामिंग में refactoring का क्या अर्थ है

18

What is the purpose of the seek() method in Python

Python में seek() method का उद्देश्य क्या है

19

What will be the output displayed by the instruction, print(List[3]), if, List=[''Programming'', "and", "Problem ", "Solving", "using"","Python"]

निर्देश द्वारा प्रदर्शित आउटपुट क्या होगा, प्रिंट(सूची[3]), यदि, सूची=[''प्रोग्रामिंग'', "और", "समस्या", "समाधान", "उपयोग"","पायथन"]

20

Which of the following is a programming language

निम्नलिखित में से कौन-सी एक प्रोग्रामिंग भाषा है

21

The number of statements inside an if block in Python is

Python में if block के अंदर statements की संख्या कितनी हो सकती है

22

Which method is used in NumPy to change the shape of an array

NumPy में array का shape बदलने के लिए कौन-सा method उपयोग किया जाता है

23

What is the data type of the index value of elements in a string in Python

Python में string के elements के index की data type क्या होती है

24

Which of the following is not a benefit of using algorithms in programming

प्रोग्रामिंग में एल्गोरिदम का उपयोग करने का निम्नलिखित में से कौन सा लाभ नहीं है?

25

The formal grammar rules governing the construction of valid instruction

वैध निर्देश के निर्माण को नियंत्रित करने वाले औपचारिक व्याकरणिक नियम

26

In a flowchart, which symbol is used as a connector to show continuation from one part to another

Flowchart में किस symbol का उपयोग एक भाग से दूसरे भाग में continuation दिखाने के लिए किया जाता है

27

What will be the output of the following Python code

निम्न Python code का output क्या होगा

import math 
print(math.copysign(3, -1))
28

Which of the following is the correct syntax to import the math module in Python

Python में math module को import करने का सही syntax कौन सा है

29

What is pseudocode used for

प्स्यूडोकोड किसके लिए उपयोग किया जाता है

30

Which operator is used in Python to import modules from packages

पैकेज से मॉड्यूल आयात करने के लिए पायथन में किस ऑपरेटर का उपयोग किया जाता है

31

Which symbol is used for a single-line comment in Python

Python में single-line comment के लिए कौन सा symbol इस्तेमाल होता है

32

Dimensions are also known as

Dimensions को और किस नाम से जाना जाता है

33

Which of the following is correct about pseudocode

प्स्यूडोकोड के बारे में निम्न में से कौन सा सही है

34

What is the output of 2^5 in Python

Python में 2^5 का output क्या होगा

35

How we install numPy in system

हम सिस्टम में numPy कैसे स्थापित करते हैं

36

What will be the output

क्या output होगा

def factorial(x)
  if x==0:
    return 1
else:
    return x*factorial(x-1)
print(factorial(3))
37

Why is the sys module used in Python

sys मॉड्यूल क्यों उपयोग किया जाता है

38

What will be the output of "hello" + 1 + 2 + 3

“hello” + 1 + 2 + 3 का output क्या होगा

39

Python provides a library to determine the type of an image, one such library is

Python ऐसी कौन-सी library प्रदान करता है जो image के type को पता करने में मदद करती है

40

What will be the value of 2*3*8**3*4

2*3*8**3*4 का मान क्या होगा

41

Which of the following statements is true about memory management in Python

Python में memory management के बारे में कौन-सा कथन सही है

42

Who is the Father of Python

Python के जनक (Father of Python) कौन हैं

43

Output of print(sum(1,2,3))

print(sum(1,2,3)) का आउटपुट क्या होगा

44

What is the concept of Indirect Recursion

Indirect Recursion की अवधारणा क्या है

45

What is the range of int32 data type in NumPy

NumPy में int32 data type की range क्या है

46

Which environment variable in Python tells the interpreter where to locate imported module files

Python में कौन-सा environment variable interpreter को बताता है कि imported modules कहाँ से load करने हैं

47

What is the formula to find standard deviation of an array using NumPy

NumPy का उपयोग करके array का standard deviation निकालने का formula क्या है

48

What does Scope mean in Python

Python में Scope से क्या तात्पर्य है

49

How are array dimensions represented

Array dimension कैसे दर्शाते हैं

50

What is Numpy in Python

Numpy क्या है

51

What is the difference between Tuple and List in Python

Tuple और List के बीच क्या अंतर है

52

Where is a data file usually stored

डेटा फाइल को कहाँ रखा जाता है

53

What will be the output of the following NumPy code

निम्नलिखित NumPy कोड का output क्या होगा

import numpy as np
x = np.arange(1, 11, 2)
print(x)
54

How many times will while (1==3) execute

while (1==3) कितनी बार चलेगा

55

Output of 8/4/2, 8/(4/2)

8/4/2, 8/(4/2) का आउटपुट क्या होगा

56

What is the full form of NumPy

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

57

What is Modular Programming

Modular Programming क्या है

58

In NumPy, how do you find the shape of an array

NumPy में किसी array का shape कैसे पता करते हैं

59

Which is a mutable data type in Python

Python में कौन-सा Mutable Data Type है

60

Which layer executes bytecode

कौन-सी लेयर bytecode को execute करती है?

61

Which of the following statement is incorrect

निम्न में से कौन-सा कथन गलत है?

62

Tuple is faster because

Tuple तेज़ क्यों होता है?

63

Which mechanism allocates memory to Python variables

Python variables के लिए memory allocation कौन करता है?

64

Which statement is true?

निम्न में से कौन-सा कथन सही है?

65

What does myList[::-1] do?

myList[::-1] क्या करता है?

66

What will be the output displayed by the instruction, print(List[3]), if, List=[''Programming'', "and", "Problem ", "Solving", "using"","Python"]?

निर्देश द्वारा प्रदर्शित आउटपुट क्या होगा, प्रिंट(सूची[3]), यदि, सूची=[''प्रोग्रामिंग'', "और", "समस्या", "समाधान", "उपयोग"","पायथन"] ?

67

dir() function is used to—

dir() function किसके लिए?

68

DO…WHILE is exit checked loop, it means the loop will be executed at least _____.

DO…WHILE एक एग्जिट चेक्ड लूप है, इसका मतलब है कि लूप कम से कम _____ बार निष्पादित होगा।

69

Python indentation is used for?

Python indentation उपयोग किया जाता है?

70

Which function converts a list into a Series?

List को Series में बदलने के लिए कौन-सा function है?

71

(What will be the output of print(5*(2//3)) in Python?)

Python में print(5*(2//3)) का आउटपुट क्या होगा?

72

Which keyword changes global variable inside function?

Function में global variable बदलने के लिए keyword?

73

What is the full form of SDK?

SDK का पूरा नाम क्या है?

74

What is the default Python IDE?

Python का डिफ़ॉल्ट IDE कौन सा है?

75

There are __ Functions/Method in Python Programming

पायथन प्रोग्रामिंग में __फ़ंक्शन/विधि हैं।

76

What is the output of this code? print(10/0)

इस code का output क्या होगा? print(10/0)

77

By default, Python source files are treated as encoded in _

डिफ़ॉल्ट रूप से, पायथन स्रोत फ़ाइलों को _ में एन्कोडेड माना जाता है

78

Which loop is entry-controlled?

कौन-सा loop entry-controlled होता है?

79

How we install numPy in system?

हम सिस्टम में numPy कैसे स्थापित करते हैं

80

Which of the following is used to reverse an array

निम्नलिखित में से किसका उपयोग एरे को पलटने के लिए किया जाता है?

81

What will be the output of q.pop(1) for q = [3,4,5,20,5,25,13]?

q = [3,4,5,20,5,25,13] के लिए, q.pop(1) का output क्या होगा?

82

Is python code compiled or interpreted

क्या पायथन कोड संकलित या व्याख्यायित है?

83

Which language introduced Object Oriented Programming (OOP

ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग (OOP) किस भाषा ने शुरू की थी?

84

List is a mutable data structure. What does mutable mean

List mutable होती है। Mutable का अर्थ क्या है?

85

random.shuffle() method किस data type की value accept करता है?

random.shuffle() method accepts the value of which data type

86

(What will be the result of pow(2, 3, 5) in Python?)

Python में pow(2, 3, 5) का परिणाम क्या होगा?

87

Welcome to the course of Python.".find('of', 0, 20) का output क्या होगा?

What will be the output of "Welcome to the course of Python.".find('of', 0, 20)?

88

Which of the following function is used to read the data in binary file?

बाइनरी फ़ाइल में डेटा पढ़ने के लिए निम्नलिखित में से किस फ़ंक्शन का उपयोग किया जाता है?

89

निम्न NumPy कोड का आउटपुट क्या होगा?

(What will be the output of the following NumPy code?)

x = np.arange(1, 11, 2)
print(x)
90

Python was developed at which institute?

Python किस संस्थान में विकसित किया गया?

91

What does axis=0 mean in NumPy operations?

NumPy में axis=0 का क्या मतलब है?

92

What will be the output after the following statements?

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

x = 'Python' print(tuple(x))
93

__________ फ़ंक्शन फ़ाइल सूचक की करंट स्थिति लौटाता है .

function returns the current position of file pointer.

94

(What is the order in which Python searches for an identifier?)

Python में किसी variable (identifier) को खोजने का क्रम क्या है

95

What error occurs when you execute the following Python code snippet?

निम्नलिखित पायथन कोड स्निपेट को निष्पादित करने पर क्या त्रुटि उत्पन्न होती है?

Apple=mango
96

What is ‘f’ in the following statement ?

निम्नलिखित कथन में 'f' क्या है?

f=open(“Data.txt”, “r”)
97

Which method counts the frequency of an element in a list?

कौन सा मेथड किसी सूची में किसी तत्व की आवृत्ति गिनता है?

98

Which method removes extra spaces from both sides of a string?

कौन-सा method string के दोनों तरफ के extra spaces हटाता है

99

What will be the output of this Python code?

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

str="Hello python"
print(str[-7:-4:1])
100

What does the islower()function check in a string?

islower() फ़ंक्शन एक स्ट्रिंग में क्या जांचता है?

OMR Answer Sheet
Unmarked Marked Current
OMR Answer Sheet

Test submitted

Thanks, Candidate! Your responses have been recorded.

0
Answered
0
Unanswered

Hook this screen up to your backend to show the actual score.