
Javascript Basics Quiz Review
Authored by Katy Fleming
Computers
12th Grade
Used 6+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
If we want to generate a random number where 5 is the smallest number possible and 10 is the largest number possible, which line of code would be correct?
let rand = Randomizer.nextInt(5, 10);
let rand = Randomizer.nextInt(5, 11);
let rand = Randomizer.nextInt(4, 11);
let rand = Randomizer.nextInt(4, 10);
2.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
You are splitting up all of your apples equally between 3 people. Which statement below will calculate how many apples will be left over?
let leftOver = numApples / 3;
let leftOver = 3 / numApples;
let leftOver = numApples % 3;
let leftOver = 3 % numApples;
3.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What would be the correct way to name a function that tells us the day of the week?
function dayofweek() {
...
}
function day_of_week() {
...
}
function DayOfWeek() {
...
}
function dayOfWeek() {
...
}
Answer explanation
Good job! We use the camel case naming convention in JavaScript functions. Therefore the first letter of the first word is lower case and the first letter of the following words should be upper case.
4.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
If you were given the following variables:
let distance = 2;
let time = 30;
What line of code would print the speed in km/hr if the distance is given in km and the time is given in minutes?
(Speed = distance / time)
console.log(distance / (time / 60));
console.log(distance / time);
console.log(distance (time 60));
console.log(distance * time);
5.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
Which of the following is part of the navigator’s role in pair-programming?
defining all of the functions
focusing on the task at hand
thinking of alternative ways to solve the problem
initializing the variables
Answer explanation
Good job! It is the driver’s job to type out all of the code. The navigator’s job includes thinking of alternative, more efficient ways to solve the problem.
6.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What is the output of the following program: (Assume the user enters ‘Florence’ then ‘Fernandez’.)
Fernandez Florence
Florence
Fernandez
FlorenceFernandez
Florence Fernandez
Answer explanation
Good job! We didn’t include a space between the first and last name in our wholeName variable or in the console.log command. Be careful when concatenating strings and make sure to double-check your spaces!
7.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
A store has 20 apples in its inventory. How can you store this information in a JavaScript variable?
let numApples == 20;
20 = numApples;
let numApples = 20;
let num apples = 20;
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
15 questions
Visual C# Quiz - Chapter 5: Loops, Files, and Random Numbers
Quiz
•
12th Grade
11 questions
Chapter 6 Part 2 - 4
Quiz
•
11th - 12th Grade
13 questions
bts
Quiz
•
KG - Professional Dev...
10 questions
EMPTECH L4 Q3
Quiz
•
12th Grade
10 questions
JSPS Competition Hackathon - Scratch Language - Grade 1
Quiz
•
2nd Grade - University
10 questions
Microcontroller
Quiz
•
11th Grade - University
14 questions
Input, output and storage de
Quiz
•
8th Grade - Professio...
10 questions
ZOOM QUIZ
Quiz
•
1st - 12th Grade
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
22 questions
fractions
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
15 questions
Equivalent Fractions
Quiz
•
4th Grade
20 questions
Figurative Language Review
Quiz
•
6th Grade