Home » C Programming » Bitwise Operators

Left shifting a number by 1 is always equivalent to multiplying it by 2.

Correct Answer: True

Explanation:

0001 => 1
0010 => 2
0100 => 4
1000 => 8

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion