what is the order of binary representation
Bit, Nibble, Byte, Kibibyte, Mebibyte, Gigabyte, Tebibyte, Pebibyte, Exibyte
Ben Nibbled Bens Keish Made Gratefully To Paul
how and why do computers use binary to represent all forms of data
how many bits are in a Nibble
4
how many bits are in a Byte
8
how many bytes are in Kibibyte
1024 bytes
how many KiB are in a MiB
1024 KiB
how to convert binary into positive denary
what base system does denary have
base of 10
how to convert positive denary into binary
what number system does hexadecimal have
base 16
what are 10 - 15 represented by in hexadecimal
A-F
how to convert binary into hex
convert 01001111 into hex
0100 = 4
1111 = 15 = F
4F
how convert hex into binary
convert 7E into binary
7 = 0111
E = 14 = 1110
01111110
how to convert hex into denary
convert 5B into denary
5 x 16 = 80
B = 11
11 x 1 = 11
80 + 11 = 91
how to convert denary into hex
convert 219 into hex
219 / 16 = 13 r 11
13 = D
11 = B
DB
how and why hexadecimal is used as a beneficial method of data representation.
2 main uses
what are the 4 uses of hex within areas of computer science
what are the rules of binary addition
0+0 = 1
0+1 = 1
1+1 = 0 carry 1
1+1+1 = 1 carry 1
add 01011011 + 00111010
01011011
00111010
——————-
10010101
when will an overflow occur