• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/31

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

31 Cards in this Set

  • Front
  • Back
Bit-
Basic unit of storage in a computer. All information is represented as strings of bits, each with a 0 or 1 value, (either 0 and 1, or “on” and “off).
Byte-
A grouping of 8 bits. Bytes represent single alpha-numeric characters using a coding scheme, (most common ASCII); e.g., in ASCII code, “1000001” represents the letter “A”.
Kilobyte (KB)-
Approximately one thousand bytes (exactly 1024 bytes)
Megabyte (MB)-
Approximately one million bytes (exactly 1024*1024 bytes)
Gigabyte (GB)
Approximately one billion bytes (exactly 1024*1024*1024 bytes)
Terabyte (TB)-
Approximately one trillion bytes (exactly 1024*1024*1024*1024 bytes)
Petabyte (PB)-
Approximately one quadrillion bytes (exactly 1024*1024*1024*1024*1024 bytes)
Why 1024?-
1024 is nice round number in binary math (i.e., 2 to the 10th power)
What is measured in bytes and what is measured in bits?-
Storage capacities are specified in bytes, but transmission speeds are specified in bits.
How is the capitalization nomenclature different for bits and bytes?-
When talking about bits the suffix is lower case. When talking about bytes the suffix is upper case. So, 10 Mb is (about) 10 million bits, while 10 MB is (about) 10 million bytes
RAM-
Stores all the programs you currently have loaded, and all the data those programs are working with. RAM chips forget their contents when the power is turned off.
Flash memory-
A special kind of semi-conductor memory that doesn’t forget its contents when the power is shut off. Slower and more expensive than RAM chips. Comes in flash cards and flash drives and USB flash drives.
Flash cards-
Used in small digital devices such as cameras and iPods.
fFlash drives-
Used as hard drive replacements in computers.
USB flash drives-
Highly portable devices that can be easily connected to any device with a USB port.
Cache memory-
Super fast kind of memory that resides on the microprocessor itself holding recently used data and programs. When a program needs data, looks in cache, then in regular RAM. Data in cache accessed 10x faster than data in RAM.
Cache Concept-
The concept of "caching" goes beyond memory. Cached webpages work the same
Hard disk drives-
Physical magnetic disks spinning at very high rate of speed that permanently store data. Most common in PC’s, less expensive than RAM and Flash memory. Slower, consume more power, are subject to shocks and bumps, so less commonly used in digital music players, PDAs, laptop computers, etc.
Optical disk drive-
Reads and writes data on optical media, (e.g. CD, DVD, and Blu-ray Disc. Data stored as a sequence of microscopic pits in the surfaces of the disk. Written/read by lasers (thus burned).
CPU-
The part of the computer that actually runs your programs.
Microprocessor-
CPU on a single semiconductor chip (diagram). Modern computers and digital devices of all sorts have microprocessors as their CPU.
Multi-core processor-
Two or more independent CPU’s on the same chip. Microprocessors from Intel and AMD have many millions of transistors.
Transistor-
The most basic building block of the circuitry in computers and electronics of all sorts.
Integrated Circuits-
Large numbers of transistors etched into semiconductor chips (microprocessors and memory chips).
Clockspeed-
How many "cycles" of work a microprocessor can perform in a second. Divided into cycles of standard duration for synchronization. For example, in one cycle two pieces of data can be fetched from memory; in the next the two pieces can be added; and then in the next the result can be sent to storage.
Clockspeed Units of Measurement-
Megahertz (millions of cycles per second) and gigahertz (billions of cycles per second)
Microprocessor Performance Determinants-
Clockspeed, cache memory, pipelining, # (i.e., how many operations the microprocessor can do simultaneously), # independent processors (if multi-core) & the word size (the number of bits the microprocessor can work with at one time).
MIPS-
millions of instructions per second. It is a better measure of the overall speed of a microprocessor than clockspeed, though still not perfect.
Server Definition / Types of-
Refers to server-class computer hardware, or any computer that is configured in such a way that it can act like a server. Server-class computers are typically quite powerful--with lots of processing power, memory, and hard drive space. They can be used to support large websites, but also to support large shared applications, such as ERP. So, you can buy hardware servers from Dell. Or you can turn your own computer (even a laptop) into a service by installing the right software (e.g., the Apache Web Server) and connecting it to the network.
Server Purpose-
The purpose of a server is to fulfill requests in a networking environment. The most common kinds of servers are web servers. Every time to you browse the internet, you are sending requests to a server, which processes your request (i.e., to display a web page) and then sends you the result.
Mainframe-
the largest and most powerful kind of computer in common use. Mainframes are capable of supporting hundreds of simultaneous users, each assessing the mainframe through a dedicated terminal. Years ago, all of an organization's computing would be typically be done on a single mainframe, which was so large it would fill an entire room. Mainframes have become comparatively rare as the work of computing has been taken over by personal computers and servers. Today's mainframes usually perform the role of servers, and in fact have been renamed as "enterprise servers".