AP Computer Science Vocabulary Flashcards
Terms : Hide Images [1]
5988901607 | Bit | Binary Digit, the single unit of information in a computer. | ![]() | 0 |
5988901608 | Bit rate | the number of bits that are processed in a unit of time | ![]() | 1 |
5988901609 | Protocol | A set of rules used for transmitting data. | ![]() | 2 |
5988901610 | Router | a computer designed to receive and redirect packets of information based upon the addressing information (IP address) | ![]() | 3 |
5988901611 | Packets | Small chunks of information that have been chunks of information formed from large chunks of information | 4 | |
5988901612 | TCP (Transmission Control Protocol) | Provides reliable, ordered and error checked delivery stream of packets on the Internet. | ![]() | 5 |
5988901613 | DNS (Domain Name Service) | the service that translates URLs to IP addresses | ![]() | 6 |
5988901614 | HTTP (Hypertext Transfer Protocol) | The protocol used for sending and receiving web pages -ASCII text- based protocol -At the same level as DNS | ![]() | 7 |
5988901615 | Compression | Represents the same data using fewer bits | 8 | |
5988901616 | Pixel | the fundamental unit of a digital image a) short for picture element b) typically a tiny square or dot which contains a single point of color or larger image | ![]() | 9 |
5988901617 | Metadata | data that describes other data a) Examples: size of number, number of colors, or resolution (how clear the image is) | ![]() | 10 |
5988901618 | Internet Packet | The packet contains the data that needs to be sent, but also other data like the to and from address, and packet number. | ![]() | 11 |
5988901619 | Lossless Compression | a data compression algorithm that allows the original data to be perfectly reconstructed from the compressed data. | 12 | |
5988901620 | Lossy Compression | (or irreversible compression) a data compression method that uses inexact approximations, discarding some data to represent the content. Most commonly seen in image formats like .jpg. | 13 | |
5988901621 | Top Down Design Approach | A design process that begins by specifying complex pieces and then dividing them into smaller pieces. | 14 | |
5988901622 | Abstraction | Pulling out specific differences to make one solution work for multiple problems. -a mental tool that allows us to ignore low-level details when they are unnecessary. -this ability to ignore small details is what allows us to develop complex encodings and protocols. | 15 | |
5988901623 | Assumption | The information collected that gave us a false representation of data. | 16 | |
5988901624 | Digital Divide | the gulf between those who have ready access to computers and the Internet, and those who do not. | 17 | |
5988901625 | Programming Language | Instructional "code" where each has a precise, unambiguous meaning. | ![]() | 18 |
5988901626 | Sequencing | Sequencing is the application of each step of an algorithm in the order in which the statements are given. | ![]() | 19 |
5988901627 | Selection | Selection uses a [true-false] condition to determine which of two parts of an algorithm is used. | ![]() | 20 |
5988901628 | Iteration | Iteration is the repetition of a part of an algorithm until a certain condition is met or for a specified number of times. In a computer program, a common form of iterations is a loop, which repeats code to determine values for multiple variables or sometimes just a single variable (adding up multiple values together). | ![]() | 21 |
5988901629 | Algorithm | A precise sequence of instructions for processes that can be executed only by the computer. | ![]() | 22 |
5988901630 | Function | a piece of code that you can call over and over again | 23 | |
5988901631 | API | a collection of commands made available to a programmer | ![]() | 24 |
5988901632 | Documentation | a description of the behavior of a command, function, library, API, etc. | ![]() | 25 |
5988901633 | Library | a collection of commands / functions, typically with a shared purpose | ![]() | 26 |
5988901634 | Parameter | An extra piece of information that you pass to the function to customize it for a specific need. | ![]() | 27 |