Python - Operators And Expressions
Questions No: 1/32

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

Questions No: 2/32

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

Questions No: 3/32

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

Questions No: 4/32

Give the output of: print(2^5)
इसका आउटपुट क्या होगा : print(2^5)

Questions No: 5/32

The data type of an expression int(m)/int(n) will result in:
एक अभिव्यक्ति का डेटा प्रकार int(m)/int(n) परिणाम देगा:

Questions No: 6/32

Which of the following is not a relational opeartor in Python?
निम्नलिखित में से कौन पायथन में एक रिलेशनल ऑपरेटर नहीं है?

Questions No: 7/32

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

Questions No: 8/32

which one is an Assignment Operator
एसाइन्मेंट आपरेटर है :

Questions No: 9/32

What will the following code output?

a,b,c=3,5,6 
b,c,a=a+1,b+2,c+3
print(a,” ”,b,” ”,c)

Questions No: 10/32

What will the following code output?

a,b,c=3,5,6 
b,c,a=a,b,c
print(a,” ”,b,” ”,c)

Questions No: 11/32

Which of the following will give error ?
निम्नलिखित में से कौन त्रुटि देगा?

Questions No: 12/32

What will the following code output?

a=5;b=7	
b=a
print(a,” ”,b)

Questions No: 13/32

What is the output of the code print(7%2).
कोड print(7%2) का आउटपुट क्या है।

Questions No: 14/32

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

Questions No: 15/32

What will be the output of the following :print( (5*2-4*8)%7)
निम्नलिखित कोड का आउटपुट क्या होगा? : print( (5*2-4*8)%7)

Questions No: 16/32

What will the following code output?

a=5 
a*=10
print(a)

Questions No: 17/32

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

Questions No: 18/32

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

Questions No: 19/32

What is the output of : print(2*3**3*4)
इसका आउटपुट क्या है: print(2*3**3*4)

Questions No: 20/32

Which of the following is not a logical operator?
निम्नलिखित में से कौन एक लॉजिकल ऑपरेटर नहीं है?

Questions No: 21/32

Which translator is used to convert assembly language into machine language?
असेंबली भाषा को मशीन भाषा में को बदलने के लिए किस अनुवादक का उपयोग किया जाता है

Questions No: 22/32

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

Questions No: 23/32

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

Questions No: 24/32

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

Questions No: 25/32

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

Questions No: 26/32

What will be the output of the following pseudocode, where ^ represent XOR operation ?

Integer a, b, c
set b = 4, a = 3
c =a ^ b
Print c

Questions No: 27/32

Which symbol is used for bitwise XOR operator
बिटवाइज़ XOR ऑपरेटर के लिए कौन सा प्रतीक प्रयोग किया जाता है?

Questions No: 28/32

What will be the output of the following expression ?

x =4
print(x<<2)

Questions No: 29/32

Which of the following is an invalid statement in python.
निम्नलिखित में से कौन सा पायथन मे इनवैलिड स्टेटमेन्ट है ।

Questions No: 30/32

Which statement can be use to swap the values of an and b
a और b के मानों को स्वैप करने के लिए किस कथन का उपयोग किया जा सकता है?

Questions No: 31/32

Which expression is equivalent to A=A*8
कौन सा व्यंजक A=A*8 के समतुल्य है

Questions No: 32/32

Which of the following is a floor division operator?
निम्न में से कौन फ्लोर डिवीजन ऑपरेटर है?