Computer Memory
Computer Memory
When a computer processes any operation, it needs to store the data and instructions temporarily.The computer stores this data and information in the memory. The memory chips on the motherboard in the computer CPU perform this function. This memory which is stored temporarily is called Primary Storage.
A BYTE is a basic storage unit of a memory. The data and instructions all exist as Bytes. 1 BYTE consist of 8 BITS. A Bit is the smallest unit of information a computer can possess. For example:
11001100 = 1 Byte
00001000 = 1 Byte
011000001010101011111111 = 3 Byte
1010111100000011100001110001111010101111 = 5 Byte
One Byte can store one character of information. A character can be a numbe, an alphabet or a symbol. For example '5', 'U', '+' each of the 3 characters are made of 1byte each. Any name like, say [MANOJ KUMAR] consists of 11 characters (10 letters and 1 space) and so occupies memory space of 11 bytes inside a computer.
Since computers need to store a large amount of information, various unis have been assigned to measure memory.
1 nipple= 4bit
8 bites = 1bytes
KiloByte(KB): 1 Kilobyte = 1024 Bytes
MegaByte(MB): 1 Megabyte = 1024 Kilobytes = 1048576 Bytes
GigaByte(GB): 1 Gigabyte = 1024 Megabytes = 1048576 Kilobytes = 1073741824 Bytes
TeraByte(TB): 1 Terabyte = 1024 Gigabytes = 1048576 Megabytes = 1073741824 Kilobytes = 1099511627776 Bytes!!!.
Comments