Software Applications
Data & Databases
Scratch Programming
Algorithms
Debugging
100

Name a word processor

Google Docs

Microsoft Word

LibreOffice Writer

100

In a database, what is a record?

In a database, a record is a collection of related information that is stored together.


Name    Age    Class    Email

Alice       11      6A    alice@example.com  

100

What is a variable in Scratch?

A stored value like a number or name

100

What is an algorithm?

A specific set of instructions

100

What is a bug?

Error in coding

200

What is spreadsheet software used for?

For storing data

200

What is the difference between a field and a table?

A field is an individual column in a database, while a table are all the field in the database or the entire collection of data

200

What does a loop do?

it repeats an action

200

Give me an example of when a forever loop would be useful in Scratch

To make a Sprite constantly do an action without stopping.  Move, change color, say something again, etc

200

What is the first step to debugging?

Find exactly where the problem is 

300

Which app is best for creating slides?

Google Slides

Microsoft PowerPoint

LibreOffice Impress

300

What are some different data types we can use in a database?

text like names, numbers like money or numbers like dates

300

What block of code could be used for selection in Scratch?

condition if/then/else

300

Why is decomposition useful?

It helps us understand what we need to do to make the code run by breaking it into smaller chunks that are easier to understand how to do.

300

Identify a mistake in this code: 

set score to score +

There is nothing being added to score so the variable score will stay the same

400

Name one feature of a Database

All databases have information stored categorically.  They have records and are separated by fields.  All databases are searchable

400

What type of data is $100

Currency

400

Identify the bug: 

“IF score = 10 

say 'you win'”

there is no THEN part of the block

400

Correct this code:

 IF rainy 

GO beach

Missing the THEN part

400

What is an easy way to debug in scratch?

Break apart the code and run each piece of code individually

500

How does a database differ from a word processor?

A database is not used for writing documents but to store data in categorical fields.  Each entry is known as a record while a word processor is mostly used for plain text documents

500

What is a feature of a database which can help us sort data?

filter

500

Correct this: 

if name = "Ben" 

then Hello 

else wait

there is no command to use the word "Hello"

500

Explain what this code does: 

repeat 5 

move 10 steps

it moves 10 steps 5 times

500

Why might a Sprite not respond to input?

You didn't store the input as a variable, you made a mistake having the Sprite act upon the correct input..etc