01 - Computer Basics | 04. Units of Measure In Computing Flashcards
Learn about how computer features are measured and compared.
What is the smallest unit of data for computers?
A bit, the binary digit.
What are the values a bit can have?
This unit of data can only have one of two values: 0 or 1, usually to represent if an electronic signal is off or on.
A grouping of 8 bits is also called what?
A byte
A kilobyte is what abbreviation?
Kilobyte (kB)
How many bytes is a kB and what is an example size?
1000 Bytes and an example size is a typical email (~2kB)
A megabyte is what abbreviation?
Megabyte (MB)
How many bytes is a MB and what is an example size?
1000^2 Bytes and an example size is a novel (~1.5MB) or 1 song (~5MB)
A gigabyte is what abbreviation?
Gigabyte (GB)
How many bytes is a GB and what is an example size?
1000^3 Bytes and an example size is a 1080p movie (5GB)
A terabyte is what abbreviation?
Terabyte (TB)
How many bytes is a TB and what is an example size?
1000^4 Bytes and an example size is entire major libraries
A petabyte is what abbreviation?
Petabyte (PB)
How many bytes is a PB and what is an example size?
1000^5 Bytes and an example size is all the data held by a major tech company.
T/F | Modern drives are faster for storage performance?
TRUE.
If hard drives only had a speed of 1 megabyte per second (MBps), then the example song above would take 5 seconds to load before playing! No user would consider that acceptable!
Luckily, modern drives are much faster than that. The storage of most devices today are solid state drives. For portable devices such as phones, they are usually able to read files at about 1500 MBps and write new files at 500 MBps. Desktop devices are able to reach read and write speeds of over 5000 MBps!
What is Throughput for data?
Throughput is the total amount of data that can be transferred during a given amount of time.
What is Latency for data?
Latency, the amount of delay before that transfer of data begins.
Why is knowing latency helpful?
This is helpful when many small files need to be transferred and the data seeking and accessing processes needs to be repeated many times.
What is SSD?
Solid-State Drives
What is ISP?
Internet Service Provider
Data speed not only applies to storage data but also to what?
These types of data speeds don’t apply to just storage devices. It is true for any appliance that transfers data.
Internet bandwidth and latency are measured the same way. However, instead of representing the speed of a specific device, measures of Internet devices consist of the entire “pipe” that attempts to bring the data to a device.
Everything from the speed of the server providing the data, the miles of cables connecting it to an Internet service provider (ISP), and all of the similar connections until it reaches the desired device make up this measure. Most importantly, these speeds are decided by the slowest device along the entire chain. Even if a consumer owns the fastest routers and computers, if the server is an ancient turtle connected with shoestring to the Internet, the entire connection will be slow.
What is the next step for all of this data that is brought to the computer?
It needs to be processed by the central processing unit, CPU.
T/F | Each CPU has a clock speed for determining how quickly it can do computations.
TRUE
What are the common speeds of a CPU?
Each CPU has a clock speed for determining how quickly it can do computations. This is commonly about 3.5GHz or 3.5 billion operations per second, and will likely stay around that number for the foreseeable future to physical limitation in the durability of silicon.
What is a more important measure than CPU?
A more important measure going forward is the number of cores a CPU contains. Each core within a CPU can do one computation at a time. Therefore a CPU with four cores can simultaneously do four times as many computations as a CPU with one core. So need to make a computationally heavy task four times faster? Just get a processor with four times as many cores! For well-threaded programs it’s really that simple.