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

O Level Python Paper July 2025

Question: 3 Report Error

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

What will be the output of the following NumPy code?

x = np.arange(1, 11, 2)
print(x)
A)
B)
C)
D)

Question: 6 Report Error

Python में list comprehension का syntax कैसा होता है?

What does list comprehension syntax look like in Python?

A)
B)
C)
D)

Question: 9 Report Error

भाषा दक्षता (language efficiency) कैसे प्राप्त की जा सकती है?

Language efficiency can be achieved through:

A)
B)
C)
D)

Question: 11 Report Error

Python में child class parent class की properties कैसे access करती है?

How does a child class access the properties of a parent class in Python?

A)
B)
C)
D)

Question: 19 Report Error

निम्नलिखित कोड चलाने पर अंतिम बार क्या मुद्रित होता है?

What is the last thing printed when the following code is run?


number = 0
while number <= 10:
    print("Number: ", number)
    number = number + 1

A)
B)
C)
D)

Question: 24 Report Error

pickle module क्या करता है?

What does the pickle module do in Python?

A)
B)
C)
D)

Question: 27 Report Error

EOF का full form क्या है?

What is the full form of EOF?

A)
B)
C)
D)

Question: 28 Report Error

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

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

A)
B)
C)
D)

Question: 33 Report Error

अगर a और b एक जैसे shape की numpy arrays हैं, तो np.stack((a,b)) का क्या काम है?

If a and b are numpy arrays with the same shape, what does np.stack((a,b)) do?

A)
B)
C)
D)

Question: 37 Report Error

Python में == ऑपरेटर का उपयोग किसलिए होता है?

What is the purpose of == operator in Python?

A)
B)
C)
D)

Question: 46 Report Error

Python में break और continue का अंतर क्या है?

What is the difference between break and continue in Python?

A)
B)
C)
D)

Question: 50 Report Error

Python में type() function का क्या काम है?

What does the type() function do in Python?

A)
B)
C)
D)

Question: 51 Report Error

Python में नीचे दिए गए कोड का आउटपुट क्या होगा?

What will be the output of the following Python code?


L = [1, 2, 3, 4, 5]
print([x & 1 for x in L])

A)
B)
C)
D)

Question: 53 Report Error

इस पायथन कोड को चलाने पर निम्नलिखित में से कौन सा कथन मुद्रित नहीं होगा?

Which of the following statements won’t be printed when this Python code is run?


for letter in 'Python':
    if letter == 'h':
        continue
    print('Current Letter : ' + letter)

A)
B)
C)
D)

Question: 57 Report Error

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

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

A)
B)
C)
D)

Question: 61 Report Error

Python list की index() विधि का क्या उद्देश्य है?

What is the purpose of the index() method in a Python list?

A)
B)
C)
D)

Question: 63 Report Error

Python में nested function क्या होती है?

What is a nested function in Python?

A)
B)
C)
D)

Question: 69 Report Error

Flowchart में निर्णय (decision) के लिए कौन सा symbol उपयोग किया जाता है?

In a flowchart, which symbol is used for division (decision making)?

A)
B)
C)
D)

Question: 71 Report Error

Python में नीचे दिए गए कोड का आउटपुट क्या होगा?

What will be the output of the following Python code?


L = [1, 2, 3, 4, 5]
print([x & 1 for x in L])

A)
B)
C)
D)

Question: 73 Report Error

क्या NumPy module को ऐसे import करना सही है?

Is it correct to import NumPy module like this?


import numpy as np

A)
B)
C)
D)

Question: 82 Report Error

Python dictionary में data कैसे store होता है?

How is data stored in a Python dictionary?

A)
B)
C)
D)

Question: 83 Report Error

EOL का full form क्या है?

What is the full form of EOL?

A)
B)
C)
D)

Question: 88 Report Error

नीचे दिए गए function का output क्या होगा?

What will be the output of the following function?


def C2F(c):
    return c*9/5+32
print(C2F(100))
print(C2F(0))

A)
B)
C)
D)

Question: 91 Report Error

NumPy का full form क्या है?

What is the full form of NumPy?

A)
B)
C)
D)

Question: 94 Report Error

नीचे दिए गए में से कौन सा immutable object है?

Which of the following is an immutable object?

A)
B)
C)
D)

Question: 95 Report Error

Python में खुद से बनाए गए function को क्या कहते हैं?

What do we call a function whose name is chosen by the programmer?

A)
B)
C)
D)

Question: 98 Report Error

File object के कौन से attributes होते हैं?

Which are attributes related to file objects?

A)
B)
C)
D)

Related Papers















































Latest Updates