change answer to 00000000 (#23880)

In bitwise right shift operation the answer should in 8 bit format i.e 00000000 as both the the operands are in 8 bit format
This commit is contained in:
Sayali
2018-10-31 08:11:47 +05:30
committed by Aditya
parent c2e36510ea
commit fa93878e2b

View File

@ -148,7 +148,7 @@ Consider a = 2 (in binary notation, 10) and b = 3 (in binary notation, 11) for t
<tr>
<td align="center">>></td>
<td>Performs a bitwise right shift. Shifts the bits of left operand, right by the number of bits specified as the right operand </td>
<td>a >> b = 0<br>Binary: 00000010 >> 00000011 = 0</td>
<td>a >> b = 0<br>Binary: 00000010 >> 00000011 = 00000000</td>
</tr>
<tr>
<td align="center"><<</td>