Binary & Data
Internet & Cybersecurity
App Design & UI
Variables & Conditionals
Lists & Loops
100

What number system only uses 0s and 1s?

What is binary?

100

What system translates website names into IP addresses?

What is DNS?

100

Which screen in App Lab allows you to drag and drop buttons, labels, and images?

What is Design Mode?

100

What stores information in a program?

What is a variable?

100

What type of structure stores multiple pieces of data in one variable?

What type of structure stores multiple pieces of data in one variable?

200

How many bits are in 1 byte?

What is 8?

200

What protocol is used to load webpages?

What is DNS?

200

What command changes the screen in an app?

What is setScreen()?

200

What symbol is used for 'equal to' in a conditional statement in JavaScript?

What is == ?

200

What loop repeats code a certain number of times?

What is a for loop?

300

Convert binary 1010 to decimal.

What is 10?

300

What protocol is used to load webpages?

What is HTTP or HTTPS?

300

What App Lab block detects when a button is clicked?

What is onEvent()?

300

What type of statement makes decisions in code?

What is an if statement?

300

What does list.length tell you?

How many items are in the list.

400

What is the largest number that can be stored with 4 bits?

What is 15?

400

What type of cyberattack tricks users into giving personal information through fake emails or websites?

What is phishing?

400

What is the purpose of an element ID?

To identify and control UI elements in code.

400

What operator means BOTH conditions must be true?

What is && ?

400

How many items are in the list.

To save time and reduce repeated code.

500

Why is lossless compression important for text documents?

Because no data can be lost or changed.

500

Why does the Internet use multiple routes for data?

For reliability/redundancy if one route fails.

500

Name one thing that makes an app user-friendly.

Clear buttons, readable text, easy navigation, consistent colors, etc.

500

What will this code display if score = 95?
if(score >= 90){ console.log("A"); }

What is A?

500

What is wrong with this code?
for(var i = 0; i <= list.length; i++)

The loop should use i < list.length or it will go out of bounds.

M
e
n
u