A repeat loop is also called a _ _ _ loop
for
Integer/ number
Conditionals are also called _ _ statements
if
Where do I study ?
Santa Clara University
An infinite loop is also called a _ _ _ _ _ _ _ loop
forever
What makes a variable name good?
Descriptive names!
Name a type of conditional statement
if
if else
else if
What am I studying in college?
A while loop runs when something is (true or false)
true
Name a variable type (i.e what can a variable be)
what prints out?
int HeightInInches= 48;
if (HeightInInches > = 50)
printf("You can ride the roller coaster");
else
printf("You need to grow a little more before you can ride");
You need to grow a little more before you can ride
What was grace hoppers favorite hobby as a child ?
When does a forever loop end ?
When a program is shut down or the program ends
True or false: you can change the value of a variable?
Ex: int myAge= 20;
int myAge= 21;
True
You give a function an _ _ _ _ _, it processes that information and gives an _ _ _ _ _ _
input and output
How many clocks did Grace Hopper take apart?
7
Give an example of a while loop
Answers may vary.
What are the three qualities to a variable?
(int myAge= 20)
type name and value
Why are using functions a good thing to use
Shorten your code
true!