AP Computer Science Principles EXAM Quizlet

studied byStudied by 5 people
5.0(1)
get a hint
hint

Overflow

1 / 159

Studying Progress

0%
New cards
160
Still learning
0
Almost done
0
Mastered
0
160 Terms
1
New cards

Overflow

error that results when the number of bits is not enough to hold the number, like a car's odometer "rolling over"

New cards
2
New cards

Round-off

error that results when the number of bits is not enough to represent the actual number, like 3 digits to represent π as 3.14

New cards
3
New cards

Lossy

Compressing data in a way that throws some data away and makes it almost impossible to recover the original, great compression, like JPEG images

New cards
4
New cards

Lossless

Compressing data in a way that preserves all data away and allows full recovery of the original, good compression -- usually not as good as lossy, like PNG images

New cards
5
New cards

Metadata

data about data, like a camera storing the location, aperture, shutter speed, etc. for a digital photo

New cards
6
New cards

Sequencing

code flows line by line, one after another, like a recipe

New cards
7
New cards

Selection

a boolean condition to determine which of two algorithmic paths are taken, aka if-then

New cards
8
New cards

Iteration

using a looping control structure, like while, for, foreach, repeat, repeat-until, etc.

New cards
9
New cards

Reasonable Time

polynomial in the number of steps an algorithm takes in the worst case based on the input size

New cards
10
New cards

Not reasonable time

Usually exponential in the number of steps, like doubling every time your input grows by one

New cards
11
New cards

Heuristic

using a "rule" to guide an algorithm, like always walking toward the north star if you were stuck in a forest

New cards
12
New cards

Undecidable

A problem that is so difficult, we can't ever create an algorithm that would be able to answer yes or no for all inputs, like determining if a user's program run on some input would always stop and not run forever

New cards
13
New cards

Linear Search

Going one by one vs starting in the middle and going left/right like looking for a word in the dictionary

New cards
14
New cards

Binary Search

requires the list to be sorted in order and then cutting the list in half

New cards
15
New cards

APIs

Application Programming Interface

New cards
16
New cards

Citizen Science

Lots of people to help with a scientific project, like asking everyone around the world to count the butterflies they see one day

New cards
17
New cards

Cloud Computing

Using distributed calculations and/or storage for big data or a web application

New cards
18
New cards

Crowdsourcing

Asking lots of users online to help with something, like funding a project, or running SETI@Home to help look for extraterrestrial signals

New cards
19
New cards

Creative Commons

An alternative to copyright that allows people to declare how they want their artistic creations to be shared, remixed, used in noncommercial contexts, and how the policy should propagate with remixed versions

New cards
20
New cards

Open Access

A policy that allows people to have read access to things, e.g., libraries or online data

New cards
21
New cards

Moore's Law

The # of transistors on a chip doubles every two years

New cards
22
New cards

Peer-to-peer Networks

A system where one user's computer connects through the Internet to another user's computer without going through an intermediary "centralized" computer to manage the connection

New cards
23
New cards

Digital Divide

The idea that some communities / populations have less access to computing than others

New cards
24
New cards

ISP

Internet Service Provider

New cards
25
New cards

How does internet communication arrive at its destination?

Speech on the Internet goes from the source to an ISP, into the cloud, out of the cloud to another ISP, and to its destination

New cards
26
New cards

How can the government control speech on the Internet?

  1. It can try to control the speaker or the speaker's ISP, by criminalizing certain kinds of speech. But that won't work if the speaker isn't in the same country as the listener. 2)It can try to control the listener, by prohibiting possession of certain kinds of materials. In the U.S., possession of copyrighted software without an appropriate license is illegal, as is possession of other copyrighted material with the intent to profit from redistributing it.

  2. The government can try to control the intermediaries.

New cards
27
New cards

How can Internet posters evaded being convicted for defamation/slander on the Web?

The posters could evade responsibility as long as they remained anonymous, as they easily could on the Internet.

New cards
28
New cards

What has Congress given ISPs relating to an Internet Defamation case?

Congress had given the ISPs a complete waiver of responsibility for the consequences of false and damag- ing statements, even when the ISP knew they were false.

New cards
29
New cards

Internet Protocol Hourglass

Each protocol interfaces only to those in the layers immediately above and below it, and all data is turned into IP bit packets in order to pass from an application to one of the physical media that make up the network. -Email, Web, Phone -SMTP, HTTP -TCP, UDP -IP -Wire, Fiber, Radio

New cards
30
New cards

TCP

Transmission Control Protocol Guarantees reliable transmission by breaking messages into packets, keeping track of which packets have been received successfully, resending any that have been lost, and specifying the order for reassembling the data on the other end.

New cards
31
New cards

UDP

User Datagram Protocol provides timely but unreliable message delivery

New cards
32
New cards

HTTP

HyperText Transport Protocol which is used for sending and receiving web pages

New cards
33
New cards

SMTP

Simple Mail Transport Protocol used for sending email.

New cards
34
New cards

What does "End to End" mean in regards to the Internet?

"End to End," in the Internet, means that the switches making up the core of the network should be dumb—optimized to carry out their single limited function of passing packets.

New cards
35
New cards

RFC

Request for Comment Standards adopted through a remarkable process of consensus- building, nonhierarchical in the extreme. Someone posts a proposal, and a cycle of comment and revision, of buy-in and objection, eventually converges on something useful, if not universally regarded as perfect.

New cards
36
New cards

Shortcut for going from binary to hexadecimal

To translate a binary numeral (like 11010111012) to hexadecimal, start by splitting it into groups of four bits, from right-to-left (like this: 11 0101 1101).

Then determine the value of each group and write the corresponding hex digit.

New cards
37
New cards

Internet

A network of independent but connected devices all over the world.

New cards
38
New cards

World Wide Web

The collection of interlinked website documents (such as HTML files) that you can view with a web browser by typing addresses like http://bjc.berkeley.edu/website/privacy.html.

New cards
39
New cards

HTML

Hypertext markup language Most web pages are written with ________

New cards
40
New cards

URL

Uniform Resource Locator An address for accessing specific web data located on a server

New cards
41
New cards

Server

A computer hosting data for others to access

New cards
42
New cards

Protocol

the standard for communication between browsers and servers (usually "http" or "https") Sometimes not visible in browsers like Google Chrome

New cards
43
New cards

Domain Name

The name of the server that hosts the data (bjc.berkeley.edu)

New cards
44
New cards

Path

the location of the data in a hierarchy of folders on the server (Website/privacy.html)

New cards
45
New cards

Protocols

Standards for communication

New cards
46
New cards

IP

Internet Protocol An addressing system that finds paths to distant computers Specifies how a router handles a request for another IP address.

New cards
47
New cards

Redundant

There are multiple pathways among the physical connections of the Internet to create redundancy. Even if one pathway is unavailable, there is still another way to transmit a message from sender to receiver

New cards
48
New cards

Hiearchial

There are two ____________ Internet addressing systems, domain names and IP addresses. These address ______________ works much like the postal system, which locates people first by state, then city, then street, then house number, then apartment, and then finally person.

New cards
49
New cards

Fault Tolerance

ability to work around problems

New cards
50
New cards

Scalability

the ability of the net to keep working even as the size of the network and the amount of traffic over the network increase.

New cards
51
New cards

Virus

A kind of malware that tries to spread itself over the network to other computers.

New cards
52
New cards

Antivirus Software

Helps protect against virus attacks

New cards
53
New cards

Phishing

An attacker sends you an email that appears to be from some official organization (such as your bank) and tricks you into giving information to the attackers (such as your bank password).

New cards
54
New cards

DDoS

Distributed Denial of Service -Consists of sending a lot of requests to a server at the same time. This can overload the server's network bandwidth. -Causes a temporary inability to reach the targeted server so other users of that server are denied service.

New cards
55
New cards

Which protocols are used to keep secure HTTP connections?

Transport Layer Security (TLS) or maybe an older version called Secure Sockets Layer (SSL) With these protocols, the site you are visiting sends its public key, and your browser uses it to encrypt the information you send.

New cards
56
New cards

Certificate Authorities

Used by many websites for encryption to protect files and information that is transmitted over the Internet. They issue certificates to verify the identity of a user or computer.

New cards
57
New cards

Public IP Address

The IP address that is logged by various servers/devices when you connect to them through your internet connection.

New cards
58
New cards

Private IP Address

An IP address that's reserved for internal use behind a router or other Network Address Translation (NAT) device, apart from the public.

New cards
59
New cards

IP v4

This address is big enough to support 2^32 computers. That's about four billion (4 · 109), but there are more than seven billion people on Earth, so there aren't enough IP addresses to go around. Each of the four numbers in a typical IP address today is an eight-bit byte with a value between 0 and 255

New cards
60
New cards

IP v6

The long-term solution is to increase the length of an IP address. The new IP addresses are 128 bits wide, which is enough to support 2^128 (about 1038) computers.

New cards
61
New cards

Routers

The "connection points" of the Internet. Networking devices that route traffic between subnetworks on the Internet.

New cards
62
New cards

Packets

When you send a message over the Internet, your computer divides it into small chunks called __________ that it sends individually, each on its own path. A __________ can include any kind of data: text, numbers, lists, etc.

New cards
63
New cards

Packet Switching Network

A digital networking communications method that groups all transmitted data into suitably sized blocks, called packets, which are transmitted via a medium that may be shared by multiple simultaneous communication sessions. Example : Internet

New cards
64
New cards

Hierarchy of Abstractions

Manages the complexity of the Internet by hiding the details of lower levels of the system. The highest level of abstraction includes the most general features of the Internet that have to work the same across all devices. At lowers levels of abstraction, things get more device-specific.

New cards
65
New cards

Application Layer Protocols

The highest level of abstraction because they manage how data is interpreted and displayed to users. These protocols give meaning to the bits sent by lower-level protocols; user and server computers must agree on what the bits mean, and application protocols (like HTTP) offer this.

New cards
66
New cards

Transport Layer Protocols

Manage the breakdown of a message into packets to be transmitted by lower level protocols and also the reconstruction of the message from the packets upon arrival.

New cards
67
New cards

Internet Layer Protocols

Manage the pathways that the data packets travel across networks. These protocols treat the Internet like one large network even though the physical reality on the lower level is one of many tiny subnetworks.

New cards
68
New cards

Network Interface Hardware

Also known as Link Layer All Internet devices connect through a physical interface that uses a protocol to manage the connection to the local network. These local protocols are the least abstract because they deal directly with your physical hardware.

New cards
69
New cards

DNS

Domain Name System The hierarchical addressing protocol that is human-readable

New cards
70
New cards

Who is in charge of the Internet?

The computers on the Internet and the connections among them don't belong to any one organization.

New cards
71
New cards

ICANN

the Internet Corporation for Assigned Names and Numbers Controls the DNS hierarchy and the allocation of IP addresses.

New cards
72
New cards

For how long has the U.S. dominated the Internet and why?

The U.S. has "controlled" the Internet up until 2009. The Advanced Research Project Agency (ARPA) first developed the Internet in 1969.

New cards
73
New cards

Open Protocols

Standards that are not owned by a company

New cards
74
New cards

IETF

(The Internet Engineering Task Force) and the Internet Society oversee Internet protocols

New cards
75
New cards

What does the Internet rely on to operate properly?

The internet relies on the cooperation of many different elements.

New cards
76
New cards

Firewall

Used to limit the kinds of connections (HTTP requests, incoming mail, etc.) outsiders can make to your computer.

New cards
77
New cards

Cipher

The set of rules you are using to encode the information

New cards
78
New cards

Key

What tells you how to arrange the cipher's rules. _______ is applied using an algorithm to a string or block of unencrypted text to produce encrypted.

New cards
79
New cards

Deciphering

Analyzing the code and working back from it

New cards
80
New cards

Monoalphabetic Cipher

A class of ciphers where the code is based on one letter of the alphabet standing for another letter consistently throughout the message

New cards
81
New cards

Brute force

Trying all the possible ways to crack a code

New cards
82
New cards

Frequency Analysis

Based on the idea that every language has its own specific patterns. The study of the frequency of letters or groups of letters in a ciphertext.

New cards
83
New cards

Crib

Words, letters, and phrases that are so common that it is hard to form a sentence without them Examples: e and the

New cards
84
New cards

Polyalphabetic Cipher

The way you scramble the alphabet actually changes throughout the message Example: Vigenère cipher

New cards
85
New cards

Vigenère Square

Alphabet goes up on the top and also to the side in order to help write a code.

New cards
86
New cards

How can you crack Vigenère cipher?

By using a type of frequency analysis developed by Charles Babbage. Babbage realized that some patterns in a long message may still show up and he counted how many letters separated those repeated patterns.

New cards
87
New cards

One time pad encryption

Only way to create an unbreakable cipher. Uses the key that is as long as the message itself. Once a sheet is used for a message you destroy it. Then you use the next sheet for the next message so you never repeat a key. As long as you keep the pad safe, no one can ever decrypt the message.

New cards
88
New cards

The Enigma Machine

An example of a one time pad encryption device.

New cards
89
New cards

The British Bombe

Device developed by Alan Turing used by the British military to crack the enigma machine. As long as this device knew 20 characters of the message it could crack the code.

New cards
90
New cards

Prime number

Numbers only divisible by themselves and one. Very useful for internet security because of this trait.

New cards
91
New cards

Public Key

A code that is available for anyone to use.

New cards
92
New cards

Private Key

A code that must remain confidential to its respective owner.

New cards
93
New cards

How does Public Key/Private Key Cryptography work?

Example: If Bob wants to send sensitive data to Alice, and wants to be sure that only Alice may be able to read it, he will encrypt the data with Alice's Public Key. Only Alice has access to her corresponding Private Key and as a result is the only person with the capability of decrypting the encrypted data back into its original form. As only Alice has access to her Private Key, it is possible that only Alice can decrypt the encrypted data. Even if someone else gains access to the encrypted data, it will remain confidential as they should not have access to Alice's Private Key.

New cards
94
New cards

Encryption

Works by converting information or data into a language that cannot be understood in one glance. Usually, the information is sent to a person who can decrypt it using a key only they have access, keeping the information's privacy intact.

New cards
95
New cards

Three principles of Encryption?

  1. Authentication

  2. Integrity

  3. Non-repudation

New cards
96
New cards

Authentication

Helps to verify that original author of the code is what he or she claims to be.

New cards
97
New cards

Integrity

Essential towards maintaining the privacy of the message because it must be known that the message was not tampered with in any way, shape, or form.

New cards
98
New cards

Non-repudiation

Where the user sends a message to another person but later denies he or she actually sent the message, causing confusion and bringing the integrity of the message into question.

New cards
99
New cards

Three types of encryption?

  1. secret key cryptography

  2. public key cryptography

  3. hash functions

New cards
100
New cards

Secret key cryptography

Where a single key is sent with the message to another user for the receiver to decode the message.

New cards

Explore top notes

note Note
studied byStudied by 18 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 5 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 76 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 847 people
Updated ... ago
5.0 Stars(24)
note Note
studied byStudied by 16 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 8 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 21 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 769 people
Updated ... ago
5.0 Stars(6)

Explore top flashcards

flashcards Flashcard39 terms
studied byStudied by 7 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard164 terms
studied byStudied by 14 people
Updated ... ago
4.5 Stars(2)
flashcards Flashcard167 terms
studied byStudied by 45 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard87 terms
studied byStudied by 75 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard64 terms
studied byStudied by 623 people
Updated ... ago
4.5 Stars(2)
flashcards Flashcard67 terms
studied byStudied by 166 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard39 terms
studied byStudied by 8 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard545 terms
studied byStudied by 47318 people
Updated ... ago
4.3 Stars(552)