Event Handlers
Procedures
Variables
Operators
Expressions, Statement and Blocks
Everything Else
100

In the even handler "when buttonSubmit.click", this is the name of the event being listened for.

What is click?

100

A procedure is also known as this

What is a function?

100

Numerical data is stored by this type of variable

What is an integer?

100

Operators used to perform math

What are + and -?

100

A part of the code that instructs the computer to carry out some action.

What is a statement?

100

This is used to store information in a program

What is a variable?

200

In the event handler "when CloudDB1.DataChanged", this is the name of the component listening for an event.

What is CloudDB1?

200

A procedure stores this

What are instructions to be used within your code?

200

Text information is stored by this type of variable

What is a string?

200

Operators used to compare data

What are =, > and <?

200

The part of the code that is a set of instruction that returns a single value

What is an expression?

200

The set of rules used to write code, including words, symbols and structure of your code

What is syntax?

300

Event handlers do this within an app

What is listen for an input?

300

This is the primary benefit of using procedures

What is reusing code?

300

A value of "true" or "false" is stored by this type variable

What is a boolean?

300

The type of operator used to create more complex decisions in an application, such as adding additional conditions

What is a logical operator?

300

A section of code that is grouped together

What is a block?

300

These keywords are used in a statement when retrieving and changing a variable's value to a new value.

What are 'get' and 'set'?

400

These two keywords are used to setup an event handler in your code

What are 'when' and 'do'?

400

In order to use a procedure, you use this keyword

What is call?

400

A type of variable that can store multiple related values in one group

What is a list?

400

The operator used to add an additional condition to a conditional statement?

What is 'and'?

400

The code structure used to make multiple, related decisions

What are nested statements?

400

The operator used to see if a condition is false instead of true

What is 'not'?

500

Event handlers can listen to input from this and this

What are users and events within the app?

500

Information that a procedure needs to be able to work

What are arguments?

500

Making a variable available for use to the code

What is initializing a variable?

500

The operator that compares the contents of two integers or strings

What is =?

500

A type of statement in programming that checks to see if certain conditions are met before proceeding to run additional code

What is a conditional statement?

500

This is an example of a conditional statement that we have used

What is an if/then statement?

600

At this point, an event handler will perform, or 'do' a set of tasks

What happens after the event handler gets the input being listened for?

600

When you use a procedure, you are telling the app to use this

What is the code contained within that procedure?

600

The way to reference a variable in your code

What is using variable's name?

600

The operator used when adding an additional condition to check but only requiring one of those conditions to pass

What is 'or'?