Skip to main content

Reason for storage device memory reduced compare to actual memory

We all have doubts about storage device memory reduced compare to the original size memory.
For example 
  • 16gb pen drive actual memory 14.45gb
  • 64gb pen drive actual memory 59.60gb
Anyone try to know why it's happening? In my point of view, most of us thinking manufacturing company cheating us or lacking storage space being allocated for some other purposes? but the answer is definitely NOT. What could be the real reason? Here the solution for memory reducing


Before going to know I would like to tell about some basics of storage

BASICS OF STORAGE:

In Windows, Mac and old version system will calculate the file size by using the method of Binary Number System and the base value is 2. So
                            210 = 1024  
Where 1024 termed as "1024 bytes" or "1kb" in computer denoting file size same as
                            1024bytes =1KB
                            1024kb      =1MB
                            1024mb     =1GB
                            1024gb      =1TB  and so on
Actual we calling kb is kilobyte and MB is megabyte and GB is gigabyte and so on. But calling this method is totally wrong because these terms are represented in the decimal number system.

In binary system 
                              KB=  Kibibyte=KiB   (not kilobyte)
                              MB= Mebibyte=MiB (not megabyte)
                              GB= Gibibyte=GiB   (not gigabyte)
                              TB=  Tebibyte=TiB   (not terabyte)

Ok time to focus on our main point.

Consider you are having 500 hard disks in the system. So the system will calculate the storage binary unit method

In binary unit 1kb=1024byte, 1mb=1024kb, 1gb=1024mb and so on
                              500*1024*1024*1024
500-Denote Hard Drive Storage Capacity
1024*1024*1024-which means(1GB=1024byte*1024kb*1024mb)
                                
So 500*1024*1024*1024=536870912000bits

But storage device manufactures will not measure binary system they will measure decimal system.So here 1kb=1000byte, 1mb=1000kb, 1gb=1000mb

So 500*1000*1000*1000=500000000000bits

Final Result is Binary Units - Decimal Number System i.e
5368709120000 - 50000000000= 36870912000 bits(35 GB shortage memory)

So this is the reason for reduced memory for hard disk and Pendrive compare to the actual memory 

Hope this will help you. Please command if you have any doubt

Comments

Popular posts from this blog

What is System Software and Application Software?

In this section, we are going to discuss the difference between system software and application software. Still, most of us have a lot of confusion about these two. I will clarify let me explain What is Software? Software means a set of the program made to complete some task. Its full and full codes. What is hardware? Hardware is physical one that we can touch and feel and made with some electrical components and that have some specific functions. For example Monitor, Pc, Mouse, Electric Board, Printer and etc Now you may think why I included hardware and explained?. The reason is without hardware software won't work same as without related software hardware won't work.  What is system software?  It is the software that used to manage computer resources and essential for the computer to work. It will install automatically when OS installed. See the image OS and utilities are applied in hardware then only it will work. Types: BIOS Ut...

What is Windows Service?

A Windows service is a Computer Program It enables to create long-running executable applications. It doesn't have any User Interfaces only running in the background process. It will run automatically when system boots ON and also we can set manually for Start and Stop Only one instance of windows service running on the device. It will run only administrator privileges. Are you looking my page using system or laptop?. Then you can see a lot of windows services that are running on your system background without your permission, Just follow my instructions Click "Start">Type "Services">Now you can see a lot of window services like below  WHAT IS THE WINDOWS SERVICES CONTROL MANAGER? Windows Services are managed via the Services Control Manager Panel.The Panel shows a list of services that are running on your system/laptop and for each Name, Description(Purpose of service), Status(Started or Not), Startup Type(Ma...

What is NLog ?

Nlog   is .NET Library which enables to add some sophisticated traces code to your application and delivering the flow of diagnostic traces from   source to target What is source code?                                         The source code is the fundamental component of a computer program that is created by a programmer and sequence formate.                    We can control the flow of diagnostic traces from source to target type. Types of Target: Email Messages(.mail)  Text File(.txt) Event Log(.log) Database(.db) and etc These all are called as target type messages.Each trace messages augmented with some contextual information. What is Contextual information?                    Contextual information can include f...