what programming language do we use?
Swift Playgrounds.
what character are you at the beginning of Swift playgrounds platform?
Byte
something you test that results in true or false?
condition
function and or loop
_________ switches are OFF and awaiting activation
Closed
What Is a Command?
Instruction you give a computer
what is the key word for a while Loop?
While
what is boolean?
true or false
what is Syntax?
coding language grammar.
Name another character from Swift playgrounds
Hopper or Blu
3 left turns
what is a for loop?
Runs a block of code over and over for a set number of times.
A block of code that will run only if something is true
conditional code
What best describes an algorithm?
A step-by-step series of operations
Name another character from Swift playgrounds
Hopper or Blu
What is at the end of a command? how do you start/ end a block of code?
Parenthesis () and Curly braces {}
what is a While Loops?
A loops that runs a block of code as long as a given condition is true.
what is an if statement?
Conditional statement that plays if proved true
what is a bug in code?
an error in your code
To tell a program to run a function
Call
what do you call a group of commands grouped together?
function
what is a loop?
a block of code that is repeated
what is an else statement?
Conditional statement that plays if the if statement is not proved true
What is a mistake in code called?
BUG
The process of combining small parts of a program to solve larger problems
Composition