Loops
Variables
Function/ Conditionals
Tech Spotlight/aAbout Me
100

A repeat loop is also called a _ _ _ loop

for

100
If we are talking about the weight of an elephant, what type should the variable be?

Integer/ number

100

Conditionals are also called _ _ statements

if

100

Where do I study ? 

Santa Clara University


200

An infinite loop is also called a _ _ _ _ _ _ _ loop

forever

200

What makes a variable name good?

Descriptive names!

200

Name a type of conditional statement

if 

if else 

else if 

200

What am I studying in college?

Computer Science & Engineering
300

A while loop runs when something is (true or false)

true

300

Name a variable type (i.e what can a variable be) 

letters, numbers, true or false
300

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

300

What was grace hoppers favorite hobby as a child ?

Taking apart clocks
400

When does a forever loop end ?

When a program is shut down or the program ends

400

True or false: you can change the value of a variable?  

Ex: int myAge= 20; 

      int myAge= 21; 

True

400

You give a function an _ _ _ _ _, it processes that information and gives an _ _ _ _ _ _

input and output

400

How many clocks did Grace Hopper take apart?

7

500

Give an example of a while loop 

Answers may vary. 

500

What are the three qualities to a variable?
(int myAge= 20)

type name and value

500

Why are using functions a good thing to use

Shorten your code 

500
True or false: failure is part of being an engineer 

true!

M
e
n
u