IST Practice JS

IST Practice JS

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

BabylonJS Vectors, Lights and Primitives

BabylonJS Vectors, Lights and Primitives

9th - 12th Grade

10 Qs

CF2 Vocab

CF2 Vocab

6th Grade - Professional Development

12 Qs

CP111 1st Online Live Quiz

CP111 1st Online Live Quiz

11th Grade

10 Qs

JavaScript Practices #5

JavaScript Practices #5

12th Grade

12 Qs

Python Quiz for 10s

Python Quiz for 10s

10th Grade

10 Qs

JavaScript

JavaScript

9th - 12th Grade

12 Qs

Introdução ao JavaScript

Introdução ao JavaScript

10th Grade

10 Qs

JavaScript Programming

JavaScript Programming

9th - 12th Grade

12 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();