Javascript variables

Javascript variables

12th Grade

6 Qs

quiz-placeholder

Similar activities

CS Disco U3L12

CS Disco U3L12

6th - 12th Grade

10 Qs

Java Script

Java Script

10th - 12th Grade

10 Qs

Javascript & Client side scripting

Javascript & Client side scripting

10th - 12th Grade

10 Qs

Arrays

Arrays

KG - University

10 Qs

Kuizi 1 - Python

Kuizi 1 - Python

10th Grade - University

11 Qs

Basic Python Coding

Basic Python Coding

6th - 12th Grade

9 Qs

Python for Beginners

Python for Beginners

6th - 12th Grade

9 Qs

Lesson 9 - Apple Swift Coding 1

Lesson 9 - Apple Swift Coding 1

9th - 12th Grade

9 Qs

Javascript variables

Javascript variables

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Rita Jraisat

Used 129+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which variable is undefined

var year;

var ;

var year =10; year = 7;

var year = 7 ;

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is of the following not correct rule for writting variables names.

These need to be in the lowercase or camel case

spaces are allowed while naming these.

These could be mix of letters, Numbers, _ or $

you cannot start with a number

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Variable is not case sensitive

True

False

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

One of the follwing statements is correct

var myVariable = "Hello"

var myVariable = /Hello/

var myVariable = "Hello'

var myVariable = Hello

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

which the camel case variable name is correct

var my _code_date = "c"

var myCodeDate = "c"

var MycodeDate = "c"

var MyCodeDate = "c"

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You will always find these in pairs if you have an opening one you will find a closing one as well. Even if it is after many multiple lines.

{ Braces}

[ Brackets ]

( Parentheses )

All