Q
If x = 10 and y = 2, what is the output of x >> y?

Answer & Solution

Answer: Option A
Solution:
The bitwise right shift operator (>>) shifts the bits of the first operand to the right by the number of positions specified by the second operand. 10 >> 2 results in binary 2, which is 2 in decimal.
Related Questions on Average

Given x = 7 and y = 3, what is the value of x >>> y?

A). 0

B). 1

C). 2

D). 4

Given x = 9 and y = 4, what is the value of x >>> y?

A). 1

B). 0

C). 2

D). 4

What is the output of 11 & 8?

A). 0

B). 1

C). 8

D). 11

What does ~11 evaluate to?

A). 11

B). -10

C). -11

D). 10

What does ~12 evaluate to?

A). 12

B). -12

C). -13

D). 13

What does ~7 evaluate to?

A). 7

B). -8

C). -7

D). 8

What will be the output of 9 >> 2?

A). 2

B). 4

C). 8

D). 1

What is the output of 12 | 8?

A). 12

B). 8

C). 4

D). 0

What is the result of 9 | 5?

A). 13

B). 15

C). 5

D). 9

What is the output of 11 & 3?

A). 1

B). 2

C). 3

D). 0