Basic - Bitwise left shift

Bit shift to the left as many time shifts the input number to the left as many as the value of the second input. output bits will be lost and the input bits will be 0. bit shift to the left can be used to multiply the power of 2. for example, when 8 is shifted twice the result is 32, it is the same as if multiplied 8 with two on second that is four and 4 multiplied with 8 is 32.

You can find it in the following collections: bitwise operators