• 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/74

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;

74 Cards in this Set

  • Front
  • Back

Personal Computer (PC)

A computer designed for use by an individual, usually incorporating a graphics display, a keyboard, and a mouse.

What are the 3 different applications computers are used in?

PCs, Servers, Supercomputers

Server

A computer used for running larger programs for multiple users, often simultaneously, and typically accesses only via a network.

Supercomputer

A class of computers with the highest performance and cost; they are configured as servers and typically costs tens to hundreds of millions of dollars.

Terabyte (TB)

Originally 1,099,511,627,776 (2 ^40) bytes, although communications and secondary storage system developers started using the term to mean 1,000,000,000,000 (10^12) bytes

Tebibyte (TiB

The new term for 2^40 bytes

What is the largest class of computers?

Embedded computers

Embedded Computers

A computer inside another devices used for running one predetermined application or collection of software.

Processor Cores

A version of a processor written in a hardware description language

Personal Mobile Device (PMD)

Small wireless devices to connect to the internet; they rely on batteries for power, and software is installed by downloading apps.

Cloud Computing

Large collections of servers that provide services over the Internet; some providers rent dynamically varying numbers of servers as a utility.

Warehouse Scale Computers (WSCs)

Giant data centers that cloud computing relies on.

What do Algorithms do?

Determines both the number of source-level statements and the number of I/O operations executed.

Programming Language,compiler, and architecture

Determines the number of computer instructions for each source-level statement

Processor and memory system

Determines how fast instructions can be executed

I/O system(hardware and operating system)

Determines how fast I/O operations may be executed.

A majority productivity technique for hardware and software is___________

abstractions

What are the 8 great ideas in Computer Architecture?

1. Design for Moore's Law


2. Use Abstraction to Simplify Design


3. Make the Common Case Fast


4. Performance via Parallelism


5. Performance via Pipelining


6. Performance via Prediction


7. Hierarchy of Memories


8. Dependability via Redundancy

What are two types of system software central to every computer system today?

Operating system and compiler

Operating System

Supervising program that manages the resource of a computer for the benefit of the programs that run on that computer

Compiler

A program that translates high-level language statements into assembly language statements

Binary digit or bit

One of the two numbers in a base 2 (0 or 1) that are the components of information

Instructions

A command that computer hardware understands and obeys

Assembler

A program that translates a symbolic version of instructions into the binary version

Assembly language

A symbolic representation of machine instructions

Machine language

A binary representation of machine instructions

High-level programming language

A portable language such as C, C++, Java, or Visual Basic that is composed of words and algebraic notation that can be translated by a compiler into assembly language.

What are the five classic components of a computer?

Input


Output


Memory


Datapath


Control

Liquid Crystal Display (LCD)

A display technology using a thin layer of liquid polymers that can be used to transmit or block light according to whether a charge is applied

Active matrix display

A liquid crystal display using a transistor to control the transmission of light at each individual pixel

Integrated circuit or chip

A device combining dozens to millions of transistors

What two components is the processor comprised of?

datapath and control

Datapath

The component of the processor that performs arithmetic operations

Control

The component of the processor that commands the data path, memory, and I/O devices according to the instructions of the program.

Memory

The storage area in which programs are kept when they are running and that contains the data needed by the running programs.

Cache memory

A small fast memory that acts as a buffer for a slower, larger memory.

SRAM

Static random access memory is faster, less dense, but more expensive the DRAM

What is one of the most important abstractions?

The interface between the hardware and the lowest level software.

Instruction set architecture (architecture)

An abstract interface between the hardware and the lowest-level software that encompasses all the information necessary to write a machine language program that will run correctly, including instructions, registers, memory access, I/O and so on.

Application binary interface(ABI)

The user portion of the instruction set plus the operating system interfaces used by application programmers. It defines a standard for binary portability across computers.

Implementation

Hardware that obeys the architecture abstraction

Main memory (Primary memory)

Memory used to hold programs while they are running; typically consists of DRAM in today computers

Secondary memory

Nonvolatile memory used to store programs and data between runs; typically consists of flash memory in PMDs and magnetic disks in servers

What are some advantages of networked devices?

Speed of Communication


Resource Sharing


Nonlocal access (remote)

Local Area Network (LAN)

A network designed to carry data within a geographically confined area, typically within a single building

Wide area network (WAN)

A network extended over hundreds of kilometers that can span a continent

Transistor

An on/off switch controlled by an electric signal

Very large-scale integrated circuit (VLSI)

A device containing hundreds of thousands to millions of transistors

Silicon

A natural element that is a semiconductor

Silicon crystal ingot

A rod composed of a silicon crystal that is between 8 and 12 inches in diameter and about 12 to 24 inches long.

Wafer

A slice from a silicon ingot no more that 0.1 inches thick, used to create chips.

Die

The individual rectangular sections (chips) that are cut from a wafer to avoid defects

Yield

The percentage of good dies from the total number of dies on the wafer

Response time(execution time)

The total time required for the computers to complete a task, including disk accesses, memory accesses, I/O activities, operating system overhead, CPU execution, and so on.

Throughput (bandwidth)

The total amount of work completed in a given time.

Performance=

1/execution time

When discussing computer design



n=

Performance(comp X)/ Performance(comp Y)

CPU execution time (CPU time)

The actual time the CPU spends computing for a specific task

user CPU time

The CPU time spent in a program itself

System CPU time

The CPU time spent in the operating system performing tasks on behalf of the program.

Clock period

The length of each clock cycle


Clock cycle(tick)

The time for one clock period usually of the processor clock which runs at a constant rate.

CPU time=

CPU clock cycles/ Clock Rate

CPU Clock cycles=

Instructions for a program x Avg clock cycles per instruction

Clock cycles per instruction (CPI)

Average number of clock cycles per instruction for a program or program fragment

Classic CPU Performance Equation

CPU time= (Instruction count x CPI)/ Clock Rate

Instruction mix

A measure of dynamic frequency of instructions across one or many programs

Algorithm effects whats performance?

Instruction count and possibly CPI

Programming language effects what performance>?

Instruction count and CPI

Compiler effects what performance?

Instruction count and CPI

The Instruction set architecture effects what performance?

Instruction count, clock rate, and CPI

Amdahl's Law

Execution time after improvement= (execution time affected by improvment/ Amount of improvement) + Execution time unaffected

Million Instructions per Second (MIPS)

A measurement of program execution speed based on the number of millions of instructions.

MIPS=

Instruction count/ (execution time x 10^6)