This is a unique I.D. to your device, which can change, making the internet scalable.
What is IP address?
I zipped my file to shrink the size, and hey I didn't lose a pixel!
What is lossless compression.
This efficiency is deemed to run in unreasonable time.
What is exponential?
This type of data has two options, often used in a conditional statement
What is boolean?
This is a license you get if you want people to freely use and access your creation.
What is Creative Commons?
This protocol "looks up" the IP address of your desired website, the first stop on the internet journey.
What is DNS?
Images, text, and sounds, oh my! This process takes analog data, converts it to bits, and represents it as digital data.
What is sampling?
Generalizing a problem so that it can be easier to write, manage, and reuse.
What is procedural abstraction?
If using this list:
food ["eggs", "bacon", "bagel", "juice"]
then this line of code will access "bagel" (in AP pseudocode).
What is food[3]?
Why must I input my password, face-id, AND send a code to my phone!
What is Multi-Factor Authentication?
How the internet is designed to be resilient and not always be going down.
What is redundant (redundancy)?
This data can be used by anyone, for anything!
What is open-source data (citizen science)?
When my app finds the best solution of many paths for a problem that is unsolvable or has too long of a run-time.
What is a heuristic?
What is global? (opposite of local)
Lack of access to internet and technology due to location or socio-economic status.
What is the Digital Divide?
This organization gives confirmation that this website is who they say they are through encryption, giving their http the coveted "s".
What is the certificate authority?
What is 101 in decimal?
Though binary search is faster, there's a catch for the data it can use!
Why must data be sorted?
This is the output of this code.
x <- TRUE
y <- NOT x
if ( x AND y){
DISPLAY y
}
else{
DISPLAY (x OR y)
}
What is TRUE?
This keeps Personally Identifiable Information safe by making it so anyone can send you a message, but only you can read it.
What is public key encryption?
This protocol uses metadata to number, sort, and make sure all data arrives on time and in order.
What is TCP?
These are two ways to combat bias in data usage (machine learning).
What are collecting large data sets from diverse sources?
The purpose of the following code.
if(num MOD 10 = 5){
DISPLAY num
}
What is to find numbers with 5 in the ones place.
The output of the following code.
i <- 1
x <- 0
repeat UNTIL i >= 5{
if (i MOD 2 == 0){
x = x + i
}
else{
x = x +1
}
i = i +1
}
DISPLAY x
What is 8?
When an unsanctioned device connects to a network, allowing access to data by rerouting information through their device.
What is a Rogue Access Point?