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?
Javascript Basics Flashcard Review

Flashcard
•
Computers
•
12th Grade
•
Hard
Quizizz Content
FREE Resource
Student preview

18 questions
Show all answers
1.
FLASHCARD QUESTION
Front
Back
let rand = Randomizer.nextInt(5, 10);
2.
FLASHCARD QUESTION
Front
You are splitting up all of your apples equally between 3 people. Which statement below will calculate how many apples will be left over? Options: let leftOver = numApples / 3; let leftOver = 3 / numApples; let leftOver = numApples % 3; let leftOver = 3 % numApples;
Back
let leftOver = numApples % 3;
3.
FLASHCARD QUESTION
Front
What would be the correct way to name a function that tells us the day of the week? Options: function dayofweek() { ... } , function day_of_week() { ... } , function DayOfWeek() { ... } , function dayOfWeek() { ... }
Back
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.
FLASHCARD QUESTION
Front
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) Options: console.log(distance / (time / 60));, console.log(distance / time);, console.log(distance * (time * 60));, console.log(distance * time);
Back
console.log(distance / (time / 60));
5.
FLASHCARD QUESTION
Front
Which of the following is part of the navigator’s role in pair-programming? Options: defining all of the functions, focusing on the task at hand, thinking of alternative ways to solve the problem, initializing the variables
Back
thinking of alternative ways to solve the problem
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.
FLASHCARD QUESTION
Front
What is the output of the following program: (Assume the user enters ‘Florence’ then ‘Fernandez’.)
Back
FlorenceFernandez
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.
FLASHCARD QUESTION
Front
A store has 20 apples in its inventory. How can you store this information in a JavaScript variable?
Back
let numApples = 20;
Create a free account and access millions of resources
Similar Resources on Quizizz
12 questions
Topic 1 C++ Programming

Flashcard
•
12th Grade
13 questions
About me

Flashcard
•
KG
10 questions
Arrays

Flashcard
•
10th - 12th Grade
13 questions
Unit 5 Flashcard AP CSP

Flashcard
•
9th - 12th Grade
13 questions
Functions and Parameters

Flashcard
•
9th - 12th Grade
10 questions
CMP128 Java Ch. 04 Loops Pt. 2

Flashcard
•
University
15 questions
Favorite Things: Flowers, Dogs, Colors, and Food

Flashcard
•
KG
11 questions
Java Boolean Statements

Flashcard
•
11th Grade
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for Computers
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
20 questions
Taxes

Quiz
•
9th - 12th Grade
17 questions
Parts of Speech

Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression

Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing

Quiz
•
9th - 12th Grade
10 questions
Identifying equations

Quiz
•
KG - University