This protocol uses encryption to ensure that the data sent between your browser and a website remains private and secure
HTTPS - Hypertext Transfer Protocol Secure
20 % 7 + 15//4 - 5 % 6
4
6 + 3 - 5
This was created because we ran out of IP addresses.
Ipv 6. 128 bits
Was Ipv 4 use to be 32 bits
The World Wide Web defines how we are all connected by millions of routers.
False
A type of abstraction that bundles commands into one container (chunk of code) to make programs less complex. We can use this code over and over again anywhere in our program _______________.
What is (procedural) abstract
What is a Function
This additive color model, which uses light to create colors on screens, is named for the three primary colors that combine to produce any color.
What is RBG
In determining the best route to take on recent trip, a maps application gave the user three options based on traffic patterns, road construction, and roadways. This term refers to the method for choosing the best alternative among the three possible routes.
What is a heuristic solution
I created a piece of digital art. I can use the _________________ to specify how others can use or not use my work and how.
What is Creative Commons
An attempt to intercept a person's Wi-Fi data while they think they are connected to a legitimate connection.
Rogue Access
x = 3
y = 4
x = y -3
y = x + 5
z = x - y
What is z?
-5
Tiffani compressed her video and sent it to a friend but the video looked grainy. What is this called?
What is lossy compression
An encryption method that relies on separate keys for encrypting and decrypting
Asynchronous Keys
Assuming that forward tells a robot to move forward by 10 pixels and turn tells it to turn right by 90 degrees, this shape would be drawn by the following algorithm. forward forward turn forward turn forward forward turn forward turn
What is a rectangle
In computer science _________ refers to the specific region of a program where a defined variable, function, or object is "visible" and accessible
Scope
def drawFish(x):
#code not shown
Write the command needed to make this code run. Use proper Python syntax.
drawFish(5)
or
val = 10
drawFish(val)