ITEP 206 [OUTPUT ANALYSIS]

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/67

flashcard set

Earn XP

Description and Tags

Yung outputs ay after maclick yung button. tas ano yung pagrereview nyo ay definition and pagpipilian, palitan nyo na lang sa settings nagkabaliktad sa akin eh. [Kung want nyo ituloy pa magreview nito ito ang start https://www.w3schools.com/js/exercise.asp?x=xrcise_object_property1]

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

68 Terms

1
New cards
term image

<p></p>
2
New cards
term image
knowt flashcard image
3
New cards
term image
knowt flashcard image
4
New cards
term image
knowt flashcard image
5
New cards
term image
knowt flashcard image
6
New cards
term image
knowt flashcard image
7
New cards
term image
knowt flashcard image
8
New cards
term image
knowt flashcard image
9
New cards
term image
knowt flashcard image
10
New cards
term image
knowt flashcard image
11
New cards
term image
knowt flashcard image
12
New cards
term image
knowt flashcard image
13
New cards
term image
knowt flashcard image
14
New cards
term image
knowt flashcard image
15
New cards
term image
knowt flashcard image
16
New cards
term image
knowt flashcard image
17
New cards
term image
knowt flashcard image
18
New cards
term image
knowt flashcard image
19
New cards
term image
knowt flashcard image
20
New cards
term image
knowt flashcard image
21
New cards
term image
knowt flashcard image
22
New cards
term image
knowt flashcard image
23
New cards
term image
knowt flashcard image
24
New cards
term image

True

25
New cards
term image
knowt flashcard image
26
New cards
term image
knowt flashcard image
27
New cards

True or False.
A semicolons is required after a statement in JavaScript.

False

28
New cards

How many statements are present inside the function block?
function genie() {
  let a, b, c;
  a = 5;
  b = 9;
  c = a + b;
}

4

29
New cards
term image

x = 5

30
New cards
term image

-FirstName

31
New cards

True or False.
JavaScript variable names are case in-sensitive, meaning name is the same as NAME

False

32
New cards

What is a correct syntax for creating a comment in JavaScript?

# this is a comment

// this is a comment

'' this is a comment

## this is a comment

// this is a comment

33
New cards

Select the correct syntax for commenting out the entire section of the code.


This code will
be ignored by JavaScript
and will NOT be executed

<p></p>
34
New cards
35
New cards

What will be the value of x?
x = 5;
//x = 7;

5

36
New cards


What is NOT a correct syntax for declaring variables?

let x;

dim x;

var x;

const x;

dim x;

37
New cards

Consider the following code:
let x = 5;
x = 7;
x = x + x;
alert(x);

What will be the alerted result?

10

12

14

14

38
New cards

Which one is NOT a legal variable name?

first-name

first_name

first$name

first3name

first-name

39
New cards

Create a variable called carName, assign the value Volvo to it.

knowt flashcard image
40
New cards

Create a variable called x, assign the value 50 to it.

knowt flashcard image
41
New cards
term image
knowt flashcard image
42
New cards
term image
knowt flashcard image
43
New cards

What is a correct use of the let keyword?

let x = 5;

x let 5;

let 5 into x;

x = 5(let);

let x = 5;

44
New cards

True or False.
Variables created with the let keyword can never change their value.

False

45
New cards

True or False.
With the let keyword, you can declare variables with the same name in the same block.

False

46
New cards

True or False.
Variables created with the const keyword can never change their value.

True

47
New cards

What is a correct use of the const keyword?

x const 5;

const 5 into x;

const x = 5;

const(x, 5);

const x = 5;

48
New cards

True or False.
If you create an Array with the const keyword, you cannot change the item values.

False

49
New cards

Consider the following code:
let x = 5;
let y = '8';
let z = x + y;

What will be the result of z?

58

50
New cards

Multiply 10 with 5, and alert the result:

alert(10  5);

alert(10 * 5);

51
New cards

Insert the correct operator to divide 10 by 2:

let x = 10 2

let x = 10 / 2

52
New cards

Consider the following code:
let x = 5;
x++;

What will be the result of x?

55

25

10

6

6

53
New cards

Insert the correct operator to return the remainder when 15 is divided by 9:

let x = 15 9

let x = 15 % 9

54
New cards
55
New cards

Consider the following code:
let x = 100 + 50 * 3;

What will be the result of x?

450

250

250

56
New cards

Consider the following code:
let x = 5;
x += 10;

What will be the result of x?

5

10

15

50

15

57
New cards

Use the correct assignment operator that will result in x being 15 (same as x = x + y).

x = 10;
y = 5;
x  y;

x = 10;
y = 5;
x += y;

58
New cards

In JavaScript, what is the data type of the following variable?
let x = 7.5

Decimal

Number

Integer

Float

Number

59
New cards
60
New cards

Insert the correct data type for each variable:

let a = 10;      //
let b = 'Sally'; //
let c = true;    //

Number

String

Boolean

61
New cards

What keyword is used to define a function in JavaScript?

def

func

function

function

62
New cards

Create a function called "myFunction".

  
  alert("Hello World!");


function myFunction() {alert("Hello World!");}

63
New cards

Make the function return ‘Hello‘

knowt flashcard image
64
New cards
term image
knowt flashcard image
65
New cards

Consider the following object:
const car = {
  brand: 'Volvo',
  model: 'EX90'
};

How many properties do the object have?

2

66
New cards
term image
knowt flashcard image
67
New cards

Add the following property and value to the person object: country: Norway.

const person = {
  firstName: "John",
  lastName: "Doe" _
 ______ : _______
};


const person = {
  firstName: "John",
  lastName: "Doe" ,
  country: "Norway"
};

68
New cards
term image
knowt flashcard image