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: YA-27494
0/100 answered
120:00
1

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

2

What will be the output of the following Python code?

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

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

4

What does refactoring mean in programming?

5

What will be the output of the following Python code?

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?

9

What will be the 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?

11

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

12

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

13

What is the concept of Indirect Recursion?

14

What is the range of int32 data type in NumPy?

15

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

16

Hierarchy in a pseudocode can be shown by

17

What does refactoring mean in programming

18

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

19

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

20

Which of the following is a programming language

21

The number of statements inside an if block in Python is

22

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

23

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

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

27

What will be the output of the following Python code

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

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

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

32

Dimensions are also known as

33

Which of the following is correct about pseudocode

34

What is the output of 2^5 in Python

35

How we install numPy in system

36

What will be the 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

38

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

39

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

40

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

41

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

42

Who is the Father of Python

43

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

44

What is the concept of Indirect Recursion

45

What is the range of int32 data type in NumPy

46

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

47

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

48

What does Scope mean in Python

49

How are array dimensions represented

50

What is Numpy in Python

51

What is the difference between Tuple and List in Python

52

Where is a data file usually stored

53

What will be the output of the following NumPy code

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

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

55

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

56

What is the full form of NumPy

57

What is Modular Programming

58

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

59

Which is a mutable data type in Python

60

Which layer executes bytecode

61

Which of the following statement is incorrect

62

Tuple is faster because

63

Which mechanism allocates memory to Python variables

64

Which statement is true?

65

What does myList[::-1] do?

66

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

67

dir() function is used to—

68

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

69

Python indentation is used for?

70

Which function converts a list into a Series?

71

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

72

Which keyword changes global variable inside function?

73

What is the full form of SDK?

74

What is the default Python IDE?

75

There are __ Functions/Method in Python Programming

76

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

77

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

78

Which loop is entry-controlled?

79

How we install numPy in system?

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]?

82

Is python code compiled or interpreted

83

Which language introduced Object Oriented Programming (OOP

84

List is a mutable data structure. What does mutable mean

85

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

86

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

87

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

88

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

89

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

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

Python was developed at which institute?

91

What does axis=0 mean in NumPy operations?

92

What will be the output after the following statements?

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

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

94

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

95

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

Apple=mango
96

What is ‘f’ in the following statement ?

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?

99

What will be the output of this Python code?

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

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

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.