General
JavaScript
HTML
CSS
Misc
100

Name 3 different coding languages

What is HTML, Python, C++, C#, CSS, Java, JavaScript, etc

100

Is this valid? Why or why not?

let x = 9;

let x = 10;

What is it is not valid because the variable is declared twice

100

What is a div used for?

What is it defines a division in an HTML document

100

How can do I use CSS to make the body background light blue?

body {
  background-color: lightblue;
}

100

What is the difference between HTML and CSS?

HTML is for building a web-page and CSS is for styling

200

Name 3 data types

What is Boolean, Integer, String

200

What is the output of this code?

for (let x = 0; x < 10; x++){

     console.log(x);

}

What is the numbers 1 through 10

200

How do you add a picture in HTML?

example:

<img src = "image link"/>

200

Find the errors

p {
  color = red
  text-align = center
}

p {
  color: red;
  text-align: center;
}

200

Describe 52 in binary.

What is 110100

300

What is an integer?

What is a non-fractional real number

300

Is this valid code? If it is not valid, explain why. If it is valid, explain what is happening in the code.

function myFunction(p1, p2) {

  if (p1 > p2){

    return p1;

  }

  return p1 * p2;

}

What is Yes

300

Elements are composed of three things. What are they?

ex. <p> Hello World </p>

opening tag, closing tag, and content

300

In CSS, name two ways that color can be specified?

In CSS, a color can be specified by using a predefined color name. In CSS, colors can also be specified using RGB values, HEX values, HSL values, RGBA values, and HSLA values

300

Name one difference between Java and JavaScript.

Instructor decides.

400

What is the term for the data passed to a function?

What is parameter

400

Suppose that you have a function, MagicNumber, with one parameter (integer). How do you call the function?

What is MagicNumber(5);

400

Fill in the blank for making a link to Google:

<a ___="www.google.com">Link</a>

What is href?

400

Normally, if your HTML is empty, can you use CSS alone for web development?

What is no

400

Who is Grace Hopper?

Instructor decides.

500
Give an example of a conditional.

"If", "else", "while", etc.

500

Name three different Array methods

.push(), .slice(), .indexof(), .pop()

500

How many different headings are there?

What is 6 headings

500

The two ways you can use CSS within HTML.

What is internal stylesheet and external stylesheet?

500

Can you name every student in the class?

Instructor will confirm.
M
e
n
u