IST Practice JS

IST Practice JS

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

JS Talks, Quiz #1

JS Talks, Quiz #1

1st - 12th Grade

12 Qs

P5editor

P5editor

10th Grade

8 Qs

Administración del DOM

Administración del DOM

10th Grade

10 Qs

JavaScript Fundamentals

JavaScript Fundamentals

9th Grade - Professional Development

10 Qs

JavaScript Quiz | For Beginners

JavaScript Quiz | For Beginners

1st Grade - University

10 Qs

JS quiz

JS quiz

10th Grade

12 Qs

10 Quiz#4: JavaScript Events

10 Quiz#4: JavaScript Events

10th Grade

12 Qs

Js the fourth

Js the fourth

12th Grade

10 Qs

IST Practice JS

IST Practice JS

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Rebecca Sims

Used 3+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the steps to problem solving?

define, prepare, try, reflect

prepare, try, define, reflect

reflect, prepare, try

define, try, reflect

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A variable is create to _____________.

use repeated code

hold a value

help with conditionals

put output on the screen

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used for animation on web pages?

html

css

javascript

all of them

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you comment a single line of code in JS?

<!

//

/

/*

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct format for naming variables in JS?

myApple

MyApple

myapple

my_apple

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct format for counter pattern?

x=x + 1;

x=x;

x=y;

x+1;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create a function in JS?

myFunction();

function myFunction();

function()

def myFunction();