Questions about this topic? Sign up to ask in the talk tab.
Bitwise math/Exercises
From NetSec
Revision as of 06:38, 19 July 2012 by GertieUbpgdd (Talk | contribs) (moved Bitwise math/Exercises: to Bitwise math/Exercises)
- back to Bitwise math
1) Solve for B left shift one
Operation Hexadecimal Binary
Left Shift One
B
1
"(B in Binary)"
0001
= "??" "???"
2) Solve for F right shift three
Operation Hexadecimal Binary
Right Shift three
F
3
"(F in Binary)"
0011
= "??" "???"
Answers:
1) 0110 or 6.
Operation Hexadecimal Binary
Left Shift One
B
1
1011
0001
= "6" "0110"
2) 0001 or 1.
Operation Hexadecimal Binary
Right Shift three
F
3
1110
0011
= 0001 1