Podcast
Questions and Answers
what will be the output of the following?
print(2%3)
what will be the output of the following? print(2%3)
which one of the following is correct way of declaring & initializing a variable x with value 2?
which one of the following is correct way of declaring & initializing a variable x with value 2?
what will be the output of the following?
(print(2*1**2)
what will be the output of the following? (print(2*1**2)
which of the following do not belong to python numbers?
which of the following do not belong to python numbers?
Signup and view all the answers
what will be the value of average for the following python code?
a=8
b=7
average=(a+b)/2
print(average)
what will be the value of average for the following python code? a=8 b=7 average=(a+b)/2 print(average)
Signup and view all the answers
what will be the output of the following code?
x=222
print(x)
what will be the output of the following code? x=222 print(x)
Signup and view all the answers
an identifier can begin with an underscore(_).
an identifier can begin with an underscore(_).
Signup and view all the answers
an ordered sequence of items is called
an ordered sequence of items is called
Signup and view all the answers
which of the following is a membership operator?
which of the following is a membership operator?
Signup and view all the answers
what will be the output of the following code?
a=0b1011
b=0b1101
what will be the output of the following code? a=0b1011 b=0b1101
Signup and view all the answers