JS Question Practice

Quiz
•
Computers
•
9th - 12th Grade
•
Medium

Nixon Lopez
Used 3+ times
FREE Resource
8 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What will be the output of the following code?
apple, orange
apple, banana, orange
banana
An error will be thrown
Answer explanation
The code outputs 'apple, orange' because it likely filters or processes a list of fruits, excluding 'banana'. The correct choice reflects the remaining items after this operation.
2.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What will be the output of the following code?
name: John Doe, age: 30, occupation: Software Engineer
0: name, 1: age, 2: occupation
person.name: John Doe, person.age: 30, person.occupation: Software Engineer
The code will throw an error
Answer explanation
The code outputs 'name: John Doe, age: 30, occupation: Software Engineer' because it correctly accesses the properties of the 'person' object, displaying the values associated with each key.
3.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What will be the output of the following code?
0
10
15
25
Answer explanation
The code likely involves a calculation that sums values, resulting in 15. This is the correct choice as it matches the expected output based on the logic implemented in the code.
4.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the output of the following code?
['apple', 'banana', 'orange']
['mango', 'apple', 'banana', 'orange', 'kiwi']
['mango', 'kiwi', 'apple', 'banana', 'orange']
['mango', 'apple', 'banana', 'orange']
Answer explanation
The code adds 'mango' and 'kiwi' to the list of fruits, resulting in ['mango', 'apple', 'banana', 'orange', 'kiwi']. This matches the correct answer choice.
5.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the output of the following code?
undefined
'123 Main St'
'Anytown'
'CA'
Answer explanation
The code likely accesses an object property. If the object has a property 'city' with the value 'Anytown', that will be the output. Thus, the correct answer is 'Anytown'.
6.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the output of the following code?
The form will be submitted, and the name and email values will be logged to the console.
The form will not be submitted, and the name and email values will be logged to the console.
The form will be submitted, and the name and email values will not be logged to the console.
The code will throw an error.
Answer explanation
The code captures the form submission event, logs the name and email values to the console, and allows the form to be submitted. Therefore, the correct choice is that the form will be submitted, and the values will be logged.
7.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What will the following code do?
It will generate an error because you cannot reassign a constant.
It will print 30 and 40.
It will print undefined and 40.
It will not produce any output.
Answer explanation
The code will first print 30 from the first console.log, then 40 from the second console.log. The variable is not a constant, so it can be reassigned, leading to the output of 30 and 40.
8.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What will happen when the following code is executed?
Each room type will be displayed on a new line within a paragraph.
Nothing will be displayed in the paragraph.
There will be an error in the code.
The entire array of rooms will be displayed on a single line.
Answer explanation
The code likely uses a loop to iterate through an array of room types, outputting each type with a line break. This results in each room type being displayed on a new line within a paragraph, confirming the correct choice.
Similar Resources on Wayground
10 questions
python(strings)

Quiz
•
11th Grade
10 questions
Python Variables

Quiz
•
7th - 12th Grade
11 questions
Python Code Quiz

Quiz
•
8th - 12th Grade
10 questions
Python

Quiz
•
5th - 10th Grade
10 questions
AP CS A Unit 3 Test PRACTICE

Quiz
•
9th - 12th Grade
12 questions
Java Strings

Quiz
•
9th - 12th Grade
10 questions
C#

Quiz
•
11th Grade
10 questions
Python Lists

Quiz
•
9th - 12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
10 questions
1.2 OSI & TCP IP Models Quiz

Quiz
•
10th Grade
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
30 questions
Introduction to Computers

Quiz
•
8th - 9th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade