Basics of JavaScript

Basics of JavaScript

12th Grade

8 Qs

quiz-placeholder

Similar activities

APCSU1D6 Casting Variables

APCSU1D6 Casting Variables

12th Grade

7 Qs

Java basics

Java basics

9th - 12th Grade

12 Qs

Python 2

Python 2

9th - 12th Grade

10 Qs

While Statements HW

While Statements HW

9th - 12th Grade

6 Qs

Arrays += Chan

Arrays += Chan

9th - 12th Grade

12 Qs

JS: Conditionals!

JS: Conditionals!

6th Grade - University

11 Qs

Python Variables Quiz

Python Variables Quiz

12th Grade

12 Qs

Java 4

Java 4

7th - 12th Grade

9 Qs

Basics of JavaScript

Basics of JavaScript

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Laura Andrea Medina Diaz

Used 2+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What code should I use if I want the strings to appear in the browser?

document.write

console.log

document

2.

OPEN ENDED QUESTION

3 mins • 1 pt

Write an array with 5 elements about the types of car: Ferrari, Mazda, Toyota, Mini Cooper, Renault

Evaluate responses using AI:

OFF

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the instruction given to send back a function?

send

value

return

4.

DRAW QUESTION

3 mins • 1 pt

Draw how you need to end a line of instruction.

Media Image

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of z at the end? var x = 5;

var y = x;

y++;

x--;

var z = x +y;

z++;

10

5

11

6.

DRAW QUESTION

3 mins • 1 pt

Draw the symbol to concatenate

Media Image

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you make comments in JavaScript?

//

<br>

+

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to convert a string to an integer when adding?

int();

parseInt();

parseNum();

parseInteger();