This "C" word involves multiple perspectives to better find solutions
What is collaboration?
This type of data compression reconstructs an exact original copy.
What is Lossless?
This operator returns the remainder of a division equation.
What is a Modulus? (MOD accepted)
This markup language provides the structure for all websites.
What is Hypertext Markup Language (html)?
This term describes the gap between those with and without tech access.
What is the Digital Divide?
These "errors" occur when the code runs but produces the wrong result.
These are the 8 bits that make up a single unit of storage.
What is a byte?
This process joins two or more strings together end-to-end.
What is Concatenation?
This protocol is the secure version of of a hyper text transfer protocol, often seen in browser bars.
What is https?
This legal protection covers creative works like books or songs.
What is copyright?
This design approach breaks a large task into smaller, manageable sub-tasks.
What is Top-Down Design?
In binary (Base 2), this is the decimal value of the number 101.
What is 5 (base ten)?
This logical operator is true ONLY if both conditions are true.
What is AND operator? (&&)
This tag is used to create the largest possible heading in HTML.
What is the <h1> tag?
This cyberattack uses "baiting" or trickery (like Phishing) to get data.
What is Social Engineering?
This error type prevents a program from compiling or starting at all.
What is Syntax Error?
This is the correct order of file sizes from Kilo to Peta.
What is KB-MB-GB-TB-PB (Kilabyte, Megabyte, Gigabyte, Terabyte, and Petabyte)?
This loop type repeats a block of code while a condition remains true.
What is a While Loop?
This property allows the Internet to continue working even if one path fails.
What is fault tolerance?
These "licenses" allow creators to share work while keeping some rights.
What is creative commons?
This variable is used when the user needs to use decimals.
What is a float? (I will accept a double)
This compression type reduces file size but loses some quality/detail.
What is Lossy?
The printed value of this program:
function start(){
var x =10;
program(x);
}
function program(x){
x +=5;
x /= 3;
println(x);
}
What is 5?
These are groups of data travel along this through a network.
What are packets?
This type of malware "holds files hostage" until a payment is made.
What is ransomware?