Bits
Bits means the measurement of computer memory where we can store binary number or word. N-bits memory can store n-bits binary number or words
for example :
1-bit memory can store either 1 or 0
because 1 and 0 are 1-bit binary numbers
2-bit memory can store:
00
01
10
11
3-bit memory can store:
000
001
010
011
100
101
110
111
and so on
Byte
1-byte memory consists of 8-bits that mean 1-byte memory can store, 8-bit binary number.
The byte is likely the unit to the measurement of computer memory.
So, it will be better if you know some relations
8-bit = 1 byte
1024 byte = 1 Kilobyte(KB)
1024 KB = 1 Megabyte(MB)
1024 MB = 1 Gigabyte(GB)
1024 GB = 1 Terabyte(TB)
Happy Coding
See you in the next tutorial
Next Post:
https://coderavens.blogspot.com/2018/05/c-programming-41-first-c-program.html
Happy Coding
See you in the next tutorial
Next Post:
https://coderavens.blogspot.com/2018/05/c-programming-41-first-c-program.html
Comments
Post a Comment