WorksheetsCoronation Quiz 01/11/2023
Total questions: 34
Worksheet time: 21mins
What is CodeMonkey?
A type of monkey that loves to code
An online platform for learning coding through games
A famous computer scientist
A programming language
What does "coding" mean?
Creating secret messages
Drawing pictures
Solving math problems
Writing instructions for a computer to follow
Which of the following is not a programming language?
Python
Java
BananaScript
HTML
What is an algorithm in coding?
A step-by-step set of instructions for solving a specific problem
A type of computer virus
A computer's memory
A type of computer hardware
Which of the following is a programming concept used to make decisions in code?
Loop
Variable
Condition
Function
In coding, what is a "bug"?
A type of insect that loves computers
An error or mistake in the code
A small computer program
A feature in coding languages
What does HTML stand for?
Hyper Transfer Text Markup Language
High-Tech Multimedia Language
Hyper Text Makeup Language
Hyperlink and Text Manipulation Language
What is a "function" in coding?
A type of computer game
A reusable block of code that performs a specific task
A type of coding error
A type of computer virus
Which of the following is NOT a concept related to coding?
Debugging
Encryption
Photosynthesis
Algorithm
The action of doing something over and over and over and over and over and over and over and over and over and... oh yeah, over again.
Loop
Repeating
Stepping
Array
What is the code required to get the monkey to the banana?
turtle.turnTo monkey
turtle.step 18
turtle.turnTo banana
turtle.step 18
turtle.turn right
turtle.step 17
turtle.step -18
turtle.turnTo banana
turtle.step -18
turtle.turnTo banana
turtle.step -18
turtle.turn left
turtle.step 18
turtle.turnTo banana
turtle.step 18
What is the code required to get the monkey to both bananas?
Step forward 10, step backward 10
Step 10, step -20
step 10, step -10
goto bananas
What is the code required to get the monkey to the bananas?
turtle.turn 90
turtle.step 15
turtle.turnTo island
turtle.step 28
turtle.turnTo island
turtle.step 15
turtle.step 28
turtle.turnTo island
turtle.step 28
turtle.step 15
turtle.turnTo island
turtle.step 28
What is a variable in coding?
A variable is a loop in coding.
A variable is a function in coding.
A variable is a mathematical equation in coding.
A variable is a named storage location that holds a value.
What is an if statement used for in coding?
An if statement is used for error handling in coding.
An if statement is used for input/output operations in coding.
An if statement is used for conditional execution in coding.
An if statement is used for looping in coding.
What is the purpose of comments in coding?
Comments in coding are used to make the code more visually appealing.
Comments in coding are used to hide code that is not needed.
The purpose of comments in coding is to provide additional information and explanations about the code.
Comments in coding are used to slow down the execution of the code.
Fill in the blank (…..) the correct answer.
d = 5
step d
turn (a)
d = d + 5
step d
Which are functions used to help the rat collect matches?
grab(), drop
grab, drop
grab(), drop()
grab, drop()
What is the compressed function of turnTo + distanceTo?
cometo
go to
goto
come to
What is goto called?
a variable
a function
a set
a statement
What is correct solution for this challenge?
What is x called?
a statement
a function
a variable
a loop
The function “step -10” will make the monkey
Turn around
step forward
step backward
step distanceTo
This code will not beat the level. Why?
Monkey is stepping too far
"step" should be "walk"
Monkey will turn the wrong direction
Monkey is not stepping far enough
How to define a function in statement 02?
functionname = (r)>
functionName = (a) ->
functionName = (r) ->
functionname = (a) >
I want the turtle to turn toward the island and then step 22. What code belongs in the blank (line 2) that will help me do that?
moveTo
turnToward
face
turnTo
Line 2 and 3 need to be in a loop that runs 9 times. How can I write a loop in line 1?
times.9 ->
9.times ->
9.loop ->
9 times >
What will be the missing code in line 6?
TurnTo banana
turtle. step d
step -14
d = 6
What is the goal of every level in CodeMonkey?
Create an algorithm with conditionals
Get the monkey to collect all the bananas
Move the banana toward the monkey
Move the turtle
What is indexing in coding?
Process of accessing random elements using their position or index number.
Process of sorting elements in ascending order.
Process of deleting specific elements from a list.
Process of accessing specific elements using their position or index number
TRUE OR FALSE: The monkey can walk on water.
TRUE
FALSE
I want to use a variable x in this program. What line needs to go on line 1 to declare and initialize the variable x?
let x = 20;
var x = 20;
x = 20
int x = 20;
What will happen when I run this code?
The turtle will step 10
The monkey will step 10
The monkey will step -10
step x is not a valid command, you can only step a number
Which of the following functions measure the distance between monkey and banana?
step
turnTo
distanceTo
walk
