O Level - Operators Expressions And Python Statements
Questions No: 1/50

Operations to be repeated a certain number of times are done by
संक्रियाओं को एक निश्चित संख्या में बार-बार दोहराए जाने के द्वारा किया जाता है

Questions No: 2/50

What will be the output of the following Python code?

 x = "abcdef"
i = "a"
while i in x:
    print('i', end = " ")

Questions No: 3/50

The result of abs() is equal to math.fabs()?
क्या abs() फंक्शन math.fabs() के बराबर है?

Questions No: 4/50

Which logical operator returns True if both conditions are True?
कौन सा लॉजिकल ऑपरेटर दोनों शर्तों के सत्य होने पर सत्य मान लौटाता है?

Questions No: 5/50

Can we write if / else into one line in python?
क्या हम पाइथन में एक लाइन में if / else लिख सकते हैं?

Questions No: 6/50

Which of the following types of loops are not supported in Python?
निम्नलिखित में से किस प्रकार के लूप पायथन में सपोर्ट नहीं करता हैं?

Questions No: 7/50

___ in Python is a counter-controlled loop.
पायथन में काउन्टर कन्ट्रोल्ड लूप है ।

Questions No: 8/50

In a Python program, a control structure:
एक पायथन कार्यक्रम में, एक नियंत्रण संरचना:

Questions No: 9/50

What is the output of this expression, 3*1**3?
इस एक्सप्रेशन का आउटपुट क्या है, 3 * 1 ** 3?

Questions No: 10/50

What will be the output of following expression : print(10/2+3*5)
निम्नलिखित कोड का आउटपुट क्या होगा? print(10/2+3*5)

Questions No: 11/50

What will be the value of X in the following Python expression?

x = 2+9*((3*12)-8)/10

Questions No: 12/50

Changing one data type to another is known as
एक डेटा प्रकार को दूसरे में बदलना कहलाता है

Questions No: 13/50

In python language, which of the following operators is the correct option for raising k to the power 1?
पायथन भाषा में, k को पावर 1 तक बढ़ाने के लिए निम्नलिखित में से कौन सा ऑपरेटर सही विकल्प है?

Questions No: 14/50

What will the following code output? print( 12/4/2)
निम्नलिखित कोड आउटपुट क्या होगा? print( 12/4/2)

Questions No: 15/50

Which is the most comfortable loop?
सबसे सरल लूप कौन सा है?

Questions No: 16/50

What will be the output of the following Python code?

i = 1
while True:
    if i%7 == 0:
        break
    print(i)
    i += 1

Questions No: 17/50

what will the output of following : print(2+9*((3*12)-8)/10)
निम्नलिखित कोड का आउटपुट क्या होगा? print( 2+9*((3*12)-8)/10)

Questions No: 18/50

What will the value of a if a=~100
यदि a=~100 है तो a का मान क्या है?

Questions No: 19/50

What will the following code output?

a=555 
b=55
print( b in a)

Questions No: 20/50

What is the output of the following?
n=5
while n>0:
    n-=1
    if n==2:
        continue
    print(n,end=' ')

Questions No: 21/50

What will be the output of the following Python expression?

print(4.00/(2.0+2.0))

Questions No: 22/50

What will be the value of the following Python expression?

print(4+2**5//10)

Questions No: 23/50

What will be the value of the following Python expression?

print(float(4+int(2.39)%2))

Questions No: 24/50

Which keyword does nothing?
कौन सा कीवर्ड कुछ भी नहीं करता है?

Questions No: 25/50

What will be the value of p when p= int(17/2+11.5)?
p का ​​मान क्या होगा जब p= int(17/2+11.5)?

Questions No: 26/50

_____ function convert an integer to octal string in python.
पायथन में ______ फंक्शन एक इंटीजर को ऑक्टल स्ट्रिंग में परिवर्तित करता है।

Questions No: 27/50

which function is used to get the ASCII value of any Character in PYthon?
पायथन में किसी भी वर्ण का ASCII मान प्राप्त करने के लिए किस फ़ंक्शन का उपयोग किया जाता है?

Questions No: 28/50

What will be the output after the following statements?

for i in range(1,6):
    print(i, end='')
    if i == 3:
        break

Questions No: 29/50

The output of this expression, >>>6*1**3 is ____ .
इस एक्सप्रेशन >>>6*1**3 का आउटपुट ____ है।

Questions No: 30/50

What will be the output of the following Python code?

for i in range(5):
    if i == 5:
        break
    else:
        print(i)
else:
    print("Here")

Questions No: 31/50

What will be the result of the expression print(5 and 10) ?
print(5 and 10) का परिणाम क्या होगा?

Questions No: 32/50

What is the return value of trunc()?
trunc() फंक्शन क्या रिटर्न करेगा ?

Questions No: 33/50

The condition in the if statement should be in the form of
if स्टेटमेंट में शर्त इस प्रकार होनी चाहिए

Questions No: 34/50

What will be the output of this code? print(2 ** 3)
इस कोड का आउटपुट क्या होगा? print(2 ** 3)

Questions No: 35/50

Which of the following expressions is an example of type conversion?
निम्न में से कौन सा एक्सप्रेशन्स कन्वर्श़न प्रकार का एक उदाहरण है?

Questions No: 36/50

How many control statements python supports?
पाइथॉन कितने नियंत्रण कथनों का समर्थन करता है?

Questions No: 37/50

What is the output of the following program:

i = 0
while i < 3:
    print (i)
    i=i+1
    print (i+1)

Questions No: 38/50

Which of the following is a valid arithmetic operator in Python ?
निम्नलिखित में से कौन पायथन में एक मान्य अंकगणित ऑपरेटर है?

Questions No: 39/50

What will the following code output? print(5/0)
निम्नलिखित कोड आउटपुट क्या होगा? print(5/0)

Questions No: 40/50

What will be the output of the following Python code?

i = 1
while False:
    if i%2 == 0:
        break
    print(i)
    i += 2

Questions No: 41/50

What is the output of >>>float('12.6')
>>>float('12.6') का आउटपुट क्या होगा

Questions No: 42/50

Which operator returns remainder?
कौन सा ऑपरेटर शेषफल लौटाता है?

Questions No: 43/50

find the output of following code:

import math
print(math.fabs(-3.4))

Questions No: 44/50

What will be the output after following statements?

x = 2
if x < 5:
     print(x)
else:
    pass

Questions No: 45/50

Function range(0, 5, 2) will yield on iterable sequence like
फ़ंक्शन रेंज (0, 5, 2) चलने योग्य अनुक्रम पर उत्पन्न होगी जैसे

Questions No: 46/50

Which of the following operators has the highest precedence?
निम्नलिखित में से किस ऑपरेटर की सर्वोच्च प्राथमिकता है?

Questions No: 47/50

What will the following code output?

x=0
if x:
print("True")
else:
print("False")

Questions No: 48/50

It is a combination of Operators, Operands and Constants

Questions No: 49/50

what will the output of : print(5&3)
इसका आउटपुट क्या होगा: print(5&3)

Questions No: 50/50

What does ~~~~~~5 evaluate to?
~~~~~~5 का मूल्यांकन किससे होता है?