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

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;

48 Cards in this Set

  • Front
  • Back
Data
Basic values or facts
Information
Data that has been organized and/or processed in a way that is useful in solving some kind of problem.
Types of Information
* Numbers
* Text
* Audio
* Images and graphics
* Video
Data Compression
Process of reducing the amount of space needed to store a piece of data.
Bandwidth
Restrictions that define the maximum number of bits or bytes that can be transmitted from one place to another in a fixed amount of time.
Compression Ratio
Gives an indication of how much compression occurs. It is the size of the compressed data divided by the size of the original data.
Lossless Compression
A data compression technique in which here is no loss of information.
Lossy Compression
A data compression technique in which there is a loss of information.
Analog Data
A continuous representation of data.
Digital Data
A discrete representation of data. That is, not continuous. This is the data represented in the computer.
Digitize
The act of break information down into discrete pieces
Digital Signals
Electronic signals used in the computer that have either a high or a low state, hence binary representation.
Pulse-Code Modulations
Variation in a signal that jumps sharply between two extremes.
Reclock
The act of reasserting an original digital signal before too much degradation occurs.
Signed-Magnitude Representation
Number representation in which the sign representes the ordering of the number (negative or positive) and the value represents the magnitude.
Fixed-Sized Numbers
A way to represent negative numbers as just integer values, where half of them represent negative numbers
Two's Complement
A representation of negative numbers such that the negative of 'I' is 2 raised to k minus I.
negative(I) = 2^k - I
Overflow
A situation where a calculated value cannot fit into the number of digits reserved for it. Example of a problem with trying to map a infinite world on a finite machine.
Radix Point
The dot that separates the whole part from the fractional part in a real number in any base. Basically the decimal point.
Decimal Places in Binary
The positions to the right of the radix point in binary are the halves position (2^-1) or the quarters position (2^-2)
Floating Point
A way to represent real numbers in the computer. This is the formula:
sign * mantissa * 2^exp. Called floating point because the number of digits is fixed by the radix point floats.
Scientific Notation
An alternative floating point representation.
What is the continuous, analog, entity when representing text?
The document a user is working on
What are the discrete, or digital, elements when representing text?
The separate characters that need to be represented and stored in the computer's memory.
Word Processing
Different than representing text, word procressing is what Word does--formatting and adding images and stuff.
Character Set
A list of the characters and the codes used to respresent each one.
ASCII Character Set
American Standard Code for Imformation Interchange. Originally used seven bits to represent each character, allowing for 128 unique characters.
Check Bit
Used in the original ASCII character set to help ensure proper data transmission.
Latin-1 Extended ASCII Character Set
Updated eight-bit version of the ASCII character set that represented 256 characters, accented letters, and special symbols.
Unicode Character Set
Another character set for international use. Represents characters from all languages using 16 bits per character. It is also flexible so that it can use more space per character if needed to represent additional characters. Unicode is a superset of ASCII - first 256 characters are the same so they can fit together.
What are the three types of text compression?
1. Keyword Encoding
2. Run-Length Encoding
3. Huffman Encoding
Keyword Encoding
Replacing a frequently used word with a single character. To decompress the document, reverse the process.
Limitations to Keyword Encoding
1. The characters we use to encode the keywords cannot be part of the original text.
2. Uppercase and lowercase are represented differently so you'd need a different symbol
3. No gain from encoding one letter words.
Run-Length Encoding
Replacing a long series of a repeated character with a count of the repetition.
Flag Character
Used in run-length encoding where a sequence of repeated characters is replaced with this flag character and followed by a digit indicating the number of times it's repeated.
Example: *A7 (* = flag character)
Huffman Encoding
Uses a variable-length binary string to represent a character so that frequently used characters have short codes.
Sampling
Digitizing a sound signal by periodically measuring the voltage of the signal and recording the appropriate numeric value.
RGB Color Representation in the Computer
Red, green, blue values, which are actually three numbers that indicate the relative contribution of each of these three primary colors.
Color Depth
The amount of data that is used to represent a color.
HiColor
16-bit color depth.
TrueColor
24-bit color depth.
Pixels
Individual dots used to represent a picture; stands for picture elements.
Resolution
The number of pixels used to represent a picture
Raster-Graphics format
Storing image information pixel by pixel. Raster-graphics file formats include bitmap, GIF, and JPEG.
Vector Graphics
Representation of an image in terms of lines and shapes.
Video Codec
Methods used to shrink the size of a movie. Stands for Compressor/Decompressor.
Temporal Compression
Movie compression technique based on differences between consecutive frames.
Spatial Compression
Movie compression technique based on the same compression techniques used for still images.