Bitwise Operators - Programming

Q1:

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

A True

B False

ANS:A - True

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