1/24
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
An abstraction is:
Way to manage complexity, hide details or remove duplication
An algorithm is:
A set of steps to accomplish a task
An argument is:
Values that a program provides to a function or subroutine
An arithmetic operator is:
Type of code to perform a math operation, such as +-*/
A(n) Boolean expression is:
An expression that can be evaluted as TRUE or FALSE. Often used in CONDITIONAL STATEMENTS, such as IF (condition) THEN (action1) ELSE (action2)
A(n) relational operator is:
A symbol that represents a compare action for a computer to take. Examples are: ">" (greater than), "<" (less than) and "=" (equal)
A(n) event handler is:
Control block that looks for events to then perform action
A(n) logical operator is:
Operators that are used to combine or change Boolean Expressions. The 3 standard operators are AND, OR, and NOT.
A(n) float is:
A precise number by including values after the decimal place
A(n) integer is:
A whole number, it does not have any digits after a decimal.
A(n) boolean is:
A data type that can have only 2 values - TRUE or FALSE
A(n) conditional statement is:
A programming statement that directs control flow - it uses BOOLEAN expressions to make a choice between different paths (IF (condition) THEN (path1) ELSE (path2)
A(n) event is:
An action (such as clicking a button) or occurrence (receiving a text message) that happens during runtime that will trigger a response or behavior by the software.
A(n) string is:
A type of variable that holds text (characters, numbers, punctuation or math symbols). Uses quotes to tell the computer to not treat what is inside the string (inside the quotes) as code
A(n) value is:
An object such as a number or word. A _____ is an expression that cannot be evaluated any further. Variables are evaluated to a final ____ before operators (arithmetic, relational, or logical) are then used on them.
A(n) variable is:
The smallest unit of data storage that a program can use.

Which Event Handler will update the Screen to show the picture taken on the Canvas?
Camera 2

If "AngryBird.X > HappyPig.X" is TRUE and "AngryBird.Y > HappyPig.Y" is FALSE, what color will be chosen?
Green

If AngryBird.X = 10, AngryBird.Y = 10 and HappyPig.X = 30, HappyPig.Y = 30, what color will be chosen?
Yellow

If AngryBird.X = 50, AngryBird.Y = 50 and HappyPig.X = 30, HappyPig.Y = 30, what color will be chosen?
Purple

"when slider1.position changed" is an example of:
an event handler
"message", "title", "button1Text" are all examples of:
arguments

In the picture, "HappyImage.Y < Canvas1.Height * 0.1" is an example of:
a boolean expression

In the picture, OR is an example of:
a logical operator

In the picture, the x in "Canvas1.Height x 0.1" is:
an arithmetic operator