Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
Q 1/21
Score 0
What is a Variable?
30
Any number between 0-100
A named place a program can use to store and change data
Any Binary Number
A named place a program stores a value that is never changed
Q 2/21
Score 0
What is a Constant?
30
Any Binary Number
A named place a program stores a value that is never changed
Any number between 0 – 100
A named place a program can use to store and change data
21 questions
Q.
What is a Variable?
1
30 sec
Q.
What is a Constant?
2
30 sec
Q.
What is the purpose of this measurement for the Flying Monkey Experiment?
3
30 sec
Q.
With the Flying Monkey Experiment - What units did you measure the angle in?
4
30 sec
Q.
When you were changing the game mechanics of the Bucket of Frogs game, what affect did increasing the Gravity value have ?
5
30 sec
Q.
When you were changing the gravity in the Bucket of Frogs game. How much less gravity is there on the Moon?
6
30 sec
Q.
Which of these is the variable code you used in the Bucket of Frogs Game? (Note - the correctly formatted JS code)
7
45 sec
Q.
Which of these is an example of a constantyou used in the Bucket of Frogs Game? (the correctly formatted JS code)
8
45 sec
Q.
Which is these is the correctly formatted Variable?
9
45 sec
Q.
Which is these is the correctly formatted Constant?
10
45 sec
Q.
In the Bucket of Frogs App - The value of the penalty for hitting the pipe is time is an example of which type of value?
11
30 sec
Q.
The value of the gravity used in the game is an example of which type of value?
12
30 sec
Q.
The value of the sky color used in the game is an example of which type of value?
13
30 sec
Q.
The value of the NoOfHit (number of times the frog hit the target) used in the game is an example of which type of value?
14
30 sec
Q.
The value of the TotalTurns (number of times the player shot the frog) used in the game is an example of which type of value?
15
30 sec
Q.
You play the game and no ruler is shown. You look at the code and read the remark statement in the following line of code. What do you think will happen if you set the statement to true?
const ruler = false; //This enables or disables the ruler overlay.
16
30 sec
Q.
The // are the characters that tell the code that what follows is what?
17
30 sec
Q.
When setting the length of time in the game to 30 seconds you were working with milliseconds. What is the correct value you would use to complete the following line of code?
var TimeSet = _______ ;
18
30 sec
Q.
What is the name of the web app tool you would use to take your Bucket of Frogs game and turn it into a mobile app?
19
30 sec
Q.
You are building an app that counts the steps the user takes in a day and calculates how many calories they are burning as they walk. You realize you need to store the count of the steps. What type of value are you storing?
20
45 sec
Q.
You are building an app that counts the steps the user takes in a day and calculates how many calories they are burning as they walk. It takes 20 steps to burn one calorie. So, you figure out that each step is worth .05 calories. You realize you need to store this value. What type of value are you storing?