IST Practice JS

IST Practice JS

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Understanding Backend

Understanding Backend

10th Grade

10 Qs

Programación 4to - IVBim

Programación 4to - IVBim

10th Grade

10 Qs

Technical Terms - Internet (A-Z) - JSP

Technical Terms - Internet (A-Z) - JSP

12th Grade

10 Qs

JavaScript Fundamentals

JavaScript Fundamentals

9th Grade - Professional Development

10 Qs

[Hall] DOM Modifications

[Hall] DOM Modifications

9th - 12th Grade

12 Qs

P5editor

P5editor

10th Grade

8 Qs

JavaScript & CSS & HTML

JavaScript & CSS & HTML

10th Grade

10 Qs

Javascript

Javascript

9th 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();