Computer Science, asked by milansuthar288, 4 months ago

left shift operation is equivalent to_?​

Answers

Answered by pjgaikar06
0

Arithmetic left shifts are equivalent to multiplication by a (positive, integral) power of the radix (e.g., a multiplication by a power of 2 for binary numbers). Logical left shifts are also equivalent, except multiplication and arithmetic shifts may trigger arithmetic overflow whereas logical shifts do not.

Answered by UsmanSant
1

Left shift operation is equivalent to multiplying by 2.

  • A bitwise shift operator by which different operations related to binary bits is done.
  • Left shift operator, after shifting the bits to the left side, add zeroes to the right empty side.
  • Functions with two operands.
  • Left shifts the bits of the first operand, and the second operand organizes the shifting number.
  • If 'm' and 'n' are two integers placed on an operand then (m<<n) will multiply 'm' with '2ⁿ'.

#SPJ2

Similar questions