l BitShiftLeft 45 2 positions

Enter number or binary to be shifted

Enter how many positions you wish to shift

  

BitShiftLeft 45 2 positions

45 << 2

First Check for binary format:

45 written in binary format is 101101

Decimal Shift:

BitShiftLeft 2 means multiplying our decimal value by 22 = 4

45 x 4 = 180

In terms of binary, it means shifting everything left one place and removing the leftmost digit, and the last right most digit becomes 0

Final Answer



10110100