Quiz Discussion

Bitwise _________ gives 1 if either of the bits is 1 and 0 when both of the bits are 1.

Course Name: Python

  • 1]

    OR

  • 2]

    AND

  • 3]

    XOR

  • 4]

    NOT

Solution
No Solution Present Yet

Top 5 Similar Quiz - Based On AI&ML

Quiz Recommendation System API Link - https://fresherbell-quiz-api.herokuapp.com/fresherbell_quiz_api

# Quiz
1
Discuss

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")

 

  • 1]

    bad

  • 2]

    good

  • 3]

    hello

  • 4]

    error

Solution
2
Discuss

What will be the output of the following Python code snippet?

not(10<20) and not(10>30)

 

  • 1]

    Error

  • 2]

    No output

  • 3]

    True

  • 4]

    False

Solution
3
Discuss

What will be the output of the following Python expression?

24//6%3, 24//4//2

 

  • 1]

    (3,1)

  • 2]

    (1,0)

  • 3]

    (0,3)

  • 4]

    (1,3)

Solution
4
Discuss

What will be the output of the following Python code snippet?

not(3>4)
not(1&1)

 

  • 1]
    True
    True
  • 2]
    True
    False
  • 3]
    False
    True
  • 4]
    False
    False
Solution
5
Discuss

Any odd number on being AND-ed with ________ always gives 1. Hint: Any even number on being AND-ed with this value always gives 0.

  • 1]

    10

  • 2]

    2

  • 3]

    1

  • 4]

    0

Solution
6
Discuss

Which of the following expressions results in an error?

  • 1]

    int(’10.8’)

  • 2]

    float(’10.8’)

  • 3]

    int(‘10’)

  • 4]

    float(‘10’)

Solution
7
Discuss

What will be the value of the following Python expression?

4+2**5//10

 

  • 1]

    0

  • 2]

    77

  • 3]

    7

  • 4]

    3

Solution
8
Discuss

What will be the output of the following Python expression?

int(1011)?

 

  • 1]

    1101

  • 2]

    13

  • 3]

    11

  • 4]

    1011

Solution
9
Discuss

Which among the following list of operators has the highest precedence?

 +, -, **, %, /, <<, >>, |

 

  • 1]

    %

  • 2]

    |

  • 3]

    **

  • 4]

    <<, >>

Solution
10
Discuss

Which of the following expressions is an example of type conversion?

  • 1]

    3 + 7

  • 2]

    5.0 + 3

  • 3]

    5.3 + 6.3

  • 4]

    4.0 + float(3)

Solution
# Quiz