Why use hexadecimal notation?
Most importantly, memory locations (1 byte, 8 bits) can be described in 2 hex digits, instead of 8 binary digits !
1001 1110 (Base 2) in Hexadecimal?
9E_16
AA3E in binary?
1010 1010 0011 1110
What is a ‘bit’ in the physics sense?
A high or low state of voltage in the CPU.
Higher value of volt is 1 and lower value is 0.
The specific values are different in various logic families and components.
How many bits are used in ASCII, EBCDIC and Unicode?
ASCII is 7, EBCDIC 8 and Unicode can be 8, 16 or 32.
How would you go from decimal to Hexadecimal ?
Divide by 16.