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

O Level Python Model Paper 2025

Question: 14 Report Error

अजगर के लिए पिप का क्या अर्थ है?

What does pip stand for python?

A)
B)
C)
D)

Question: 24 Report Error

पायथन में दावा कैसे अक्षम किया जा सकता है?

How can assertions be disabled in Python?

A)
B)
C)
D)

Question: 26 Report Error

नीचे दिए गए कोड स्निपेट में ___ क्या होगा?

What will be the output of the following code snippet?

a=[1,2,3,4,5,6,7,8,9]
a[::2]=10,20,30,40,50,60
print(a)
A)
B)
C)
D)

Question: 27 Report Error

निम्नलिखित सूची में फेरबदल करने के लिए सही कमांड क्या है?

What is the correct command to shuffle the following list?

fruit=['apple', 'banana', 'papaya', 'cherry']
A)
B)
C)
D)

Question: 28 Report Error

नीचे दिए गए कथनों में से कौन सा/से सत्य है/हैं?

Which of the following statements given below is/are true?

A)
B)
C)
D)

Question: 29 Report Error

निम्नलिखित कोड का परिणाम क्या है:

What is the output of the following code:

L=[‘a’,’b’,’c’,’d’]
print ( “”.join(L))
A)
B)
C)
D)

Question: 31 Report Error

निम्नलिखित प्रोग्राम का आउटपुट क्या है:

What is the output of the following program:

i = 0
while i < 3:
      print (i) 
      i=i+1 
      print (i+1)
A)
B)
C)
D)

Question: 34 Report Error

पीवीएम को प्राय: कहा जाता है।

PVM is often called .

A)
B)
C)
D)

Question: 35 Report Error

कौन सा कथन सही है??

Which statement is correct??

A)
B)
C)
D)

Question: 36 Report Error

शब्दकोश में है:

Dictionary has:

A)
B)
C)
D)

Question: 39 Report Error

कौन सा सच नहीं है:

Which is not true:

A)
B)
C)
D)

Question: 41 Report Error

सीएसवी का मतलब है|

csv stands for

A)
B)
C)
D)

Question: 44 Report Error

निम्नलिखित आदेशों को क्रियान्वित करने पर, numpy में प्रसारण का उत्पादन होगा

On executing the following commands, Broadcasting in numpy will produce

a = np.array((0,10,20,30))
b = np.array((0,1,2)) 
y = a[:, None] + b
A)
B)
C)
D)

Question: 53 Report Error

वर्गों का आउटपुट क्या होगा = {x: x*x for x in range(6)}

What will be the output of squares = {x: x*x for x in range(6)}

A)
B)
C)
D)

Question: 54 Report Error

वह कौन सा व्यंजक है जो 'baz' में 'z' लौटाता है?

What is the expression that returns the 'z' in 'baz'?

x=[10, [3.141, 20, [30, 'baz', 2.718]]]
A)
B)
C)
D)

Question: 55 Report Error

पायथन सूचियों और टुपल्स के बीच मुख्य अंतर क्या है?

What’s the main difference between Python lists and tuples?

A)
B)
C)
D)

Question: 57 Report Error

जब निम्न कोड चलाया जाता है तो क्या प्रिंट होता है?

What is printed when the following code is run?

tup = ('30', '3', '2', '8')
print(sorted(tup, reverse = True)) 
A)
B)
C)
D)

Question: 65 Report Error

readlines () वापस आ जाएगी

readlines () will return

A)
B)
C)
D)

Question: 73 Report Error

NumPy सरणियाँ हो सकती हैं।

NumPy arrays can be

A)
B)
C)
D)

Question: 74 Report Error

पायथन में फंक्शन का उपयोग निम्न में से क्या है?

What of the following is the use of function in python?

A)
B)
C)
D)

Question: 75 Report Error

Python में NumPy का उद्देश्य क्या है?

What is the purpose of NumPy in Python?

A)
B)
C)
D)

Question: 76 Report Error

आउटपुट क्या होगा?

What will be the output?

 def f(x,y,z): 
      return x+ y+ z

 f(2,30,400)
A)
B)
C)
D)

Question: 77 Report Error

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

What will be the output of the following Python code?

from numpy import random
x = random.randint(100) 
print(x)
A)
B)
C)
D)

Question: 80 Report Error

NumPy का मतलब है?

NumPy stands for?

A)
B)
C)
D)

Question: 86 Report Error

निम्नलिखित में से कौन सा कथन असत्य है?

Which among the following statement is false?

A)
B)
C)
D)

Question: 89 Report Error

NumPy में फोरट्रान ऑर्डर क्या है?

What is fortran order in NumPy?

A)
B)
C)
D)

Question: 90 Report Error

NumPy ऐरे की विशेषताएँ क्या हैं?

What are the attributes of NumPy array?

A)
B)
C)
D)

Question: 91 Report Error

NumPy किसके द्वारा विकसित किया गया है?

NumPy developed by?

A)
B)
C)
D)

Question: 92 Report Error

uint32 डेटा प्रकार की सीमा क्या है?

What is the range of uint32 data type?

A)
B)
C)
D)

Question: 93 Report Error

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

How we install numPy in system?

A)
B)
C)
D)

Question: 94 Report Error

NumPy मॉड्यूल कैसे इम्पोर्ट करें?

How to import NumPy module?

A)
B)
C)
D)

Question: 95 Report Error

पायथन उपयोग करता है:

Python uses:

A)
B)
C)
D)

Question: 96 Report Error

NumPy मॉड्यूल कैसे इम्पोर्ट करें?

How to import NumPy module?

A)
B)
C)
D)

Question: 97 Report Error

पायथन उपयोग करता है

Python uses:

A)
B)
C)
D)

Question: 98 Report Error

सीएसवी का मतलब है

csv stands for

A)
B)
C)
D)

Related Papers











































Latest Updates