JS Intro
JS Variables/Conditional Statements
JS Conditional Statements
JS Dialog Boxes
JS Loops
100

Function to write text to a web page

What is document.write?

100

This operator concatenates two or more string values together


What is a a plus sign?

100

This JavaScript method displays a dialog box that prompts the user for input.

What is prompt()?

100

The main purpose of this dialog box is to give a warning message to the users

What is an an alert dialog box?

100

If the while-loop is not set up correctly and the testing condition is always TRUE, the loop will continue running. This is called an

What is an infinite loop?

200

A JS function is defined with this keyword.

What is function?

200

This comparison operator tests for equality


What is ==?

200

This comparison operator tests for equal value and equal type

What is "==="?

200

 This dialog box requires a variable to store the response 


What is a prompt dialog box?


200

Each cycle the loop is executed is referred to as an 


What is an iteration?

300

Computer languages that are run and interpreted by the user's browser.

HTML, CSS and JavaScript

300

Decision points in programs are represented by a rhombus in a flow chart. When a program makes a decision to do one or more things based on a condition it is called   ??

What is branching

300

This conditional allows you to perform different actions for different conditions.


What is an " if - else if - else statement"?

300

The problem with this code is:
     <script>
           alert("Have a nice day!")
     </script>

What is a missing semicolon?

300

This loop loops through a block of code as long as a specified condition is true.  

What is a while-loop?

400

Name two languages  that run on the server  

What are PHP, Node. js, Java, Ruby, Perl, and Python?

400

Operators such as ++ placed after the variable, are referred to as a

What is a postfix operator?

400

This statement evaluates an expression, matching the expression's value to a case clause, and executes statements associated with that case, as well as statements in cases that follow the matching case.

What is a switch statement?

400

Name a type of function that will stop code execution until the user responds to the prompt. 


What is a blocking function?

400

This loop is guaranteed to execute at least once because it doesn't check the condition until the conclusion of the block.

What is a do-while loop

500

Two types of technologies used for web development and design

What are client-side and server-side technologies?

500

This term means that the same variable can be used to hold different data types.

What are dynamic types?

500

If else-If statements 'statements'? are typically terminated with 

What is "else"?

500

The names of all three types of dialog boxes:

What is Alert, Confirm and Prompt?

500

Name two of the three elements of a for loop

What is a counter variable, continuation condition, and counter? 

counter 

check condition

increment the counter 

M
e
n
u