For what numbers will "maybe" be output:
5
What is the result of the code: initialize global count to 0
When screen1 initialize
set global count to 1
while test get global count <= 5
set global count to get global count + 1
set lalbel text to the value of count is :: get global count
Label 1 will update on Screen 1 to show "The value of count is :: 5
Information or signals entered into a computer
Input
a set of steps to accomplish a task
Algorithm
function
A block of organized and reusable code that performs a single action
Under what circumstances will 'Screen2' become visible?
If 'Button1' is pressed and "SecretPassword" is in the 'PasswordTextBox1'
what is the output by the code: when btnCalculate click
do set ibiOutput text to modulo of 38 divide by 5
3
Information or signals produced or delivered by a computer system
output
technique or process that manages complexity in a program
abstraction
list
A collection of data values that do not have to be the same type
data type
A classification of that defines what a data item is or is not, such as integer, float, string, or Boolean
What is the result of the code: initialize global happy to true
when screen initialize
if get global happy
then set image happy visible to true set image sad visible to false
else set image happy visible to false set image sad visible to true
image happy will display
The set of rules that defines the combinations of symbols that are considered to be correct
syntax
process of repeating a set of instructions a specified number of times or until a condition is met
iteration
variable
The smallest unit of data storage that contains known or unknown information referred to as a “value”
String
Text or characters displayed by a program
what is output when Button is clicked:
22
Text or characters displayed by a program
String
In MIT app inventor a control block that looks for inputs or events to know when to perform
event handler
incremental counter
A loop that changes the value of a count by a certain amount every time an event occurs
loop
A sequence of instructions that continually repeats until a condition is met
What happens with each successive press of Button1:
The ImageHappy changes from 'visible' to 'not visible' and 'count' continues to go up by 1
sequence of instructions that continually repeat until a condition is met
loops
Block of organized and reusable code that performs a single action
Function
concatenation
A joining together of separate items—without changing them—into one place