JS Question Practice

JS Question Practice

9th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

Python Intro

Python Intro

8th - 9th Grade

10 Qs

Mastering Python String Techniques

Mastering Python String Techniques

9th - 12th Grade

10 Qs

Python (Selection)

Python (Selection)

8th - 10th Grade

13 Qs

Python Programming: Functions and Procedures

Python Programming: Functions and Procedures

9th - 11th Grade

12 Qs

Python Selection

Python Selection

8th - 9th Grade

10 Qs

Python Revision Tour

Python Revision Tour

12th Grade

10 Qs

Program Development - Python: Errors

Program Development - Python: Errors

8th - 10th Grade

13 Qs

Python variables and Data types

Python variables and Data types

10th - 12th Grade

10 Qs

JS Question Practice

JS Question Practice

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Nixon Lopez

Used 3+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

  1. 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

Media Image

  1. 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

Media Image

  1. 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

Media Image

  1. 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

Media Image

  1. 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

Media Image

  1. 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

Media Image

  1. 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

Media Image

  1. 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.