Left Shifts When shifting left, the most-significant bit is lost, and a 00 bit is inserted on the other end. The left shift operator is usually written as "<<". 0010 << 1 → 0100 0010 << 2 → 1000 A single left shift multiplies a binary number by 2: 0010 << 1 → ...