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

O Level Python Paper July 2024

Question: 3 Report Error

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

Is python code compiled or interpreted?

A)
B)
C)
D)

Question: 6 Report Error

________एक डेटा फ़ाइल है।

________is a data file.

A)
B)
C)
D)

Question: 10 Report Error

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

What will be the output of the following ?

import sys 
sys.stdout.write('Welcome\n') 
sys.stdout.write('All\n')
A)
B)
C)
D)

Question: 25 Report Error

फोरट्रान का अर्थ है:

FORTRAN stands for:

A)
B)
C)
D)

Question: 30 Report Error

डेटा किस प्रकार का है:

What type of data is :

arr = [(1, 1), (2, 2), (3, 3)]
A)
B)
C)
D)

Question: 36 Report Error

नेमस्पेस का क्रम क्या है जिसमें पायथन एक पहचानकर्ता की तलाश करता है?

What is the order of namespaces in which Python looks for an identifier?

A)
B)
C)
D)

Question: 39 Report Error

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

What is the output of the following code ?

a = {1: "A", 2: "B", 3: "C"} 
b = {4: "D", 5: "E"} 
a.update(b) 
print(a) 
A)
B)
C)
D)

Question: 42 Report Error

निम्नलिखित में से कौन सा विकल्प सही है?

Which of the following options is correct?

A)
B)
C)
D)

Question: 53 Report Error

पिप का मतलब पाइथॉन क्या है?

What does pip stand for python?

A)
B)
C)
D)

Question: 54 Report Error

निम्नलिखित का आउटपुट क्या है?

What is the output of the following ?

i = 2 
while True:
    if i%3 == 0:
       break 
    print(i,end=" " )
    i += 2 

A)
B)
C)
D)

Question: 57 Report Error

फ़्लोचार्ट का प्राथमिक उद्देश्य क्या है?

What is the primary purpose of a flowchart?

A)
B)
C)
D)

Question: 60 Report Error

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

What is ‘f’ in the following statement ?


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

A)
B)
C)
D)

Question: 64 Report Error

निम्नलिखित में से कौन सा मॉड्यूलर प्रोग्रामिंग का लाभ नहीं है?

Which of the following is not a benefit of modular programming?

A)
B)
C)
D)

Question: 65 Report Error

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

What will be the output of the following?

import numpy as np
a = np.array([1,5,4,7,8])
a = a + 1
print(a[1])
A)
B)
C)
D)

Question: 68 Report Error

सीएसवी का पूर्ण रूप है

The full form of CSV is

A)
B)
C)
D)

Question: 72 Report Error

छद्म कोड को इस नाम से भी जाना जाता है:

Pseudo code is also known as:

A)
B)
C)
D)

Question: 74 Report Error

readlines () मेथड रिटर्न करती है __________

The readlines() method returns ____________

A)
B)
C)
D)

Question: 77 Report Error

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

What will be the output of the following Python code ?

from math import factorial 
print(math.factorial(5)) 

A)
B)
C)
D)

Question: 80 Report Error

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

What will be the output of the following Python code?

def maximum(x, y):
    if x > y:
        return x
    elif x == y:
        return 'The numbers are equal'
    else:
        return y
 print(maximum(2, 3))
A)
B)
C)
D)

Question: 82 Report Error

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

What will be the output of the following Python code?

if (9 < 0) and (0 < -9):
    print("hello")
elif (9 > 0) or False:
    print("good")
else:
    print("bad")

A)
B)
C)
D)

Question: 83 Report Error

tell() विधि का क्या महत्व है?

What is the significance of the tell() method?

A)
B)
C)
D)

Question: 86 Report Error

गलत कथन को इंगित करें:

Point out the incorrect statement:

A)
B)
C)
D)

Question: 90 Report Error

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

What will be the output of the following Python code?

sys.stdout.write(' Hello\n')
sys.stdout.write('Python\n')

A)
B)
C)
D)

Question: 91 Report Error

आप किसी फ़ाइल का नाम कैसे बदलते हैं?

How do you rename a file?

A)
B)
C)
D)

Question: 94 Report Error

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

What will be the output:

print(7//2)
print(7/2)


A)
B)
C)
D)

Question: 97 Report Error

आउटपुट निर्धारित करें:

Determine the output:

for i in range(20, 30, 10) :
        j=i/2
        print(j)

A)
B)
C)
D)

Related Papers











































Latest Updates