WorksheetsPLTW CSE Unit 1.3 Review
Total questions: 35
Worksheet time: 19mins
Which AppInventor component is used to create a database in the app?
TinyDB
LocalDB
DBstart
DBsetup
What command modifies data on a server?
Post
Get
URL
Endpoint
What word describes a loop that changes the value of a count by a specific amount every time?
Increment
Global
Join
Endpoint
Which components in AppInventor are used to increase the usability of a user interface? Select all that apply.
Labels
Speech to text
Accelerometer
TinyDB
What programming concept hides details to simplify the program for the user or programmer?
Abstraction
Algorithm
Accumulators
Databases
Which block of code below demonstrates an example of abstraction?
What type of variables are used in the procedure?
2 global variables
2 local variables
2 local variables and 1 global variable
1 local variable and 2 global variables
What output would be given if the user typed in 'ten' as the pizza size?
An entry was left blank.
Please enter a number and try again!
Area: 78.5
False
What is the modulo of 14 / 8?
6
8
14
1
What data type is a modulo?
String
List
Integer
Float
What is the modulo of 14 / 8?
6
8
14
1
What is another name for a modulo?
Division
Remainder
Difference
Subtraction
What three colors are mixed together to create the images you see on monitors?
Red, green, blue
Red, blue, yellow
Red, green, yellow
Green, blue, yellow
What color is created with an RGB value of (0,0,0)?
Black
White
Red
Blue
What color is created with an RGB value of (0, 0, 255)?
Red
Green
Blue
Black
A(n) algorithm is:
Values that a program provides to a function or subroutine
Way to manage complexity, hide details or remove duplication
Type of code to perform a math operation, such as + - * /
A set of steps to accomplish a task.
A(n) argument is:
Way to manage complexity, hide details or remove duplication
A set of steps to accomplish a task.
Values that a program provides to a function or subroutine
Type of code to perform a math operation, such as + - * /
A(n) arithmetic operator is:
Values that a program provides to a function or subroutine
Type of code to perform a math operation, such as + - * /
A set of steps to accomplish a task.
Way to manage complexity, hide details or remove duplication
A(n) relational operator 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 symbol that represents a compare action for a computer to take. Examples are: ">" (greater than), "<" (less than) and "=" (equal)
Operators that are used to combine or change Boolean Expressions. The 3 standard operators are AND, OR, and NOT.
Control block that looks for events to then perform action
A(n) event handler is:
Operators that are used to combine or change Boolean Expressions. The 3 standard operators are AND, OR, and NOT.
A symbol that represents a compare action for a computer to take. Examples are: ">" (greater than), "<" (less than) and "=" (equal)
An expression that can be evaluted as TRUE or FALSE. Often used in CONDITIONAL STATEMENTS, such as IF (condition) THEN (action1) ELSE (action2)
Control block that looks for events to then perform action
A(n) logical operator is:
An expression that can be evaluted as TRUE or FALSE. Often used in CONDITIONAL STATEMENTS, such as IF (condition) THEN (action1) ELSE (action2)
Control block that looks for events to then perform action
A symbol that represents a compare action for a computer to take. Examples are: ">" (greater than), "<" (less than) and "=" (equal)
Operators that are used to combine or change Boolean Expressions. The 3 standard operators are AND, OR, and NOT.
A(n) integer 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 precise number by including values after the decimal place
A whole number, it does not have any digits after a decimal.
A data type that can have only 2 values - TRUE or FALSE
A(n) conditional statement is:
A precise number by including values after the decimal place
A data type that can have only 2 values - TRUE or FALSE
A whole number, it does not have any digits after a decimal.
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) string 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.
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.
The smallest unit of data storage that a program can use.
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:
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.
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.
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.
The smallest unit of data storage that a program can use.
A(n) variable 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.
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 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.
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 1
Camera 2
Camera 3
Camera 4
In the picture, OR is an example of:
a logical operator
an argument
a float
a string
In the picture, the x in "Canvas1.Height x 0.1" is:
a relational operator
a logical operator
an arithmetic operator
a string
In the picture, "HappyImage.Y < Canvas1.Height * 0.1" is an example of:
a boolean expression
an event
arguments
an abstraction
"message", "title", "button1Text" are all examples of:
abstraction
arguments
booleans
events
