Quiz Discussion

What is the two’s complement of -44?

Course Name: Python

  • 1]

    10110011

  • 2]

    11101011

  • 3]

    11010100

  • 4]

    1011011

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 value of X in the following Python expression?

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

 

  • 1]

    27.2

  • 2]

    28.4

  • 3]

    30.8

  • 4]

    30.0

Solution
2
Discuss

What will be the output of the following Python expression?

int(1011)?

 

  • 1]

    1101

  • 2]

    13

  • 3]

    11

  • 4]

    1011

Solution
3
Discuss

The expression 2**2**3 is evaluates as: (2**2)**3.

  • 1]

    True

  • 2]

    False

Solution
4
Discuss

Which of the following expressions results in an error?

  • 1]

    int(‘1011’)

  • 2]

    int(1011,2)

  • 3]

    int(‘1011’,23)

  • 4]

    int(1011)

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

What will be the output of the following Python code if a=10 and b =20?

a=10
b=20
a=a^b
b=a^b
a=a^b
print(a,b)

 

  • 1]

    20 20

  • 2]

    20 10

  • 3]

    10 10

  • 4]

    10 20

Solution
7
Discuss

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

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

 

  • 1]

    %

  • 2]

    |

  • 3]

    **

  • 4]

    <<, >>

Solution
8
Discuss

What will be the value of the following Python expression?

 bin(10-2)+bin(12^4)

 

  • 1]

    0b10000b1000

  • 2]

    0b1000b1000

  • 3]

    0b10001000

  • 4]

    0b10000

Solution
9
Discuss

What will be the output of the following Python expression?

~100?

 

  • 1]

    -100

  • 2]

    100

  • 3]

    -101

  • 4]

    101

Solution
10
Discuss

What will be the output of the following Python code?

class Truth:
	pass
x=Truth()
bool(x)

 

  • 1]

    error

  • 2]

    false

  • 3]

    true

  • 4]

    pass

Solution
# Quiz