IST Practice JS

IST Practice JS

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

7 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What are the steps to problem solving? Options: define, prepare, try, reflect, prepare, try, define, reflect, reflect, prepare, try, define, try, reflect

Back

define, prepare, try, reflect

2.

FLASHCARD QUESTION

Front

A variable is create to _____________.

Back

hold a value

3.

FLASHCARD QUESTION

Front

Which of the following is used for animation on web pages? html, css, javascript, all of them

Back

javascript

4.

FLASHCARD QUESTION

Front

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

Back

//

5.

FLASHCARD QUESTION

Front

Which is the correct format for naming variables in JS? Options: myApple, MyApple, myapple, my_apple

Back

myApple

6.

FLASHCARD QUESTION

Front

Which is the correct format for counter pattern? Options: x=x + 1;, x=x;, x=y;, x+1;

Back

x=x + 1;

7.

FLASHCARD QUESTION

Front

How do you create a function in JS?

Back

function myFunction();