Intro to JS: Functions, Scope & Objects

Quiz
•
Information Technology (IT)
•
11th Grade
•
Medium
Tiffany Hale
Used 3+ times
FREE Resource
8 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the keyword used to define a function in JavaScript?
define
function
method
procedure
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
In the context of JavaScript, what does the term "scope" refer to?
The number of lines in a function
The accessibility of variables and functions in different parts of the code
The speed at which a function executes
The size of the code block
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Given the function definition `function add(a, b) { return a + b; }`, what will `add(3, 4)` return?
34
7
12
undefined
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Consider the following code snippet: ```javascript var color = 'blue'; function changeColor() { var color = 'yellow'; console.log(color); } changeColor(); console.log(color); ``` What will be logged to the console?
yellow, blue
blue, yellow
yellow, yellow
blue, blue
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will be the output of the following code? ```javascript var myDog = { name: 'Buddy', age: 5 }; delete myDog.age; console.log(myDog.age); ```
5
undefined
null
Error
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Analyze the following code and determine what it does: ```javascript function multiplyByTwo(n) { return n * 2; } var result = multiplyByTwo(4); console.log(result); ```
It multiplies 4 by 2 and logs 8
It adds 2 to 4 and logs 6
It divides 4 by 2 and logs 2
It logs an error
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Given the object `var car = { brand: 'Toyota', model: 'Corolla' };`, how can you check if the property `model` exists in the object?
car.hasOwnProperty('model')
'model' in car
Both A and B
Neither A nor B
8.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
When defining a function, the definition must occur before it is called.
true
false
Similar Resources on Wayground
12 questions
3TDS - Programação Backend - Aul 17

Quiz
•
11th Grade
10 questions
Web 3.1-3.3 Quiz

Quiz
•
11th Grade
12 questions
[Quiz] Python Function

Quiz
•
University
5 questions
3TDS - Programação Backend - Aula 13

Quiz
•
12th Grade
10 questions
PENSAMENTO_COMPUTACIONAL_Funções em JavaScript

Quiz
•
11th Grade
10 questions
HTML + CSS + JS

Quiz
•
University
8 questions
Javascript Intro Parte II

Quiz
•
12th Grade
10 questions
Quiz 2 (Estrutura e Características de um Algoritmo)

Quiz
•
9th - 12th Grade
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
Discover more resources for Information Technology (IT)
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
40 questions
LSHS Student Handbook Review: Pages 7-9

Quiz
•
11th Grade
20 questions
Scalars, Vectors & Graphs

Quiz
•
11th Grade
62 questions
Spanish Speaking Countries, Capitals, and Locations

Quiz
•
9th - 12th Grade
10 questions
Solving Equations Opener

Quiz
•
11th Grade
20 questions
First Day of School

Quiz
•
6th - 12th Grade
21 questions
Arithmetic Sequences

Quiz
•
9th - 12th Grade