PreTrainingJavaScript

PreTrainingJavaScript

Professional Development

9 Qs

quiz-placeholder

Similar activities

Programming languages

Programming languages

KG - Professional Development

10 Qs

Introducción a JavaScript

Introducción a JavaScript

Professional Development

10 Qs

04 JavaScript Einführung

04 JavaScript Einführung

Professional Development

10 Qs

Workshop Vue.js Node Stytch

Workshop Vue.js Node Stytch

Professional Development

10 Qs

Intro M3

Intro M3

Professional Development

13 Qs

JavaScript Quiz Day-1

JavaScript Quiz Day-1

Professional Development

12 Qs

Data Types and Variables

Data Types and Variables

Professional Development

10 Qs

IT ENGLISH: Research Project Topics - Java and JavaScript

IT ENGLISH: Research Project Topics - Java and JavaScript

Professional Development

10 Qs

PreTrainingJavaScript

PreTrainingJavaScript

Assessment

Quiz

Computers, Professional Development

Professional Development

Medium

Created by

Keven N Mitchell

Used 12+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Which of the following is NOT one of the three keywords used to create a variable in JavaScript?

var

int

let

const

2.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

What is the JavaScript function used to print to the console?

console.log();

System.out.println();

cout << "Hello World!";

3.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

is JavaScript case sensitive?

Yes

No

4.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

let x = 5;

In the above statement, what is the data type of x?

Object

number

int

String

5.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

let x = "5";

In the above statement, what is the data type of x?

boolean

number

undefined

String

6.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

5 == "5"

what does the above expression evaluate to?

True

False

7.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

5 === "5"

what does the above expression evaluate to?

True

False

8.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Choose the statement that correctly declares and initializes an array

let array;

let a = [1,2,3];

let a = {1,2,3};

9.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Media Image

What does the pictured loop return?

"ThreeString"

"Three"

nothing