Networking
HTML/CSS
Number Systems
Javascript
Random
100

What is the Internet?

A series of networks that connects computing devices and servers for means of communication

100

What does the p stand for in the <p> tag?

Paragraph

100

What is the name of the number system that is only represented by 1 and 0?

Binary

100

What is a boolean variable?

A variable that can only hold true or false

100

What is Ms. Trayford's favorite animated show?

Avatar: The Last Airbender

200

What is the order of network sizes from smallest to largest?

LAN - MAN - WAN

200

What does HTML stand for?

Hypertext Markup Language

200

How many different digits are used in the Hexadecimal number system?

16

200

A store has 20 apples in its inventory. How can you store this information in a JavaScript variable?

var apples = 20;

200

Which famous computer scientist made the machine that defeated the German Enigma Machine?

Alan Turing

300

What is a Distributed Denial of Service (DDoS) attack?

An attempt to deny access to a website by flooding the website’s servers with millions of requests from different computers

300

What is the result of the following HTML code:

<ol>
    <li>Bread</li>
    <li>Milk</li>
    <li>Eggs</li>
</ol>

  1. Bread
  2. Milk
  3. Eggs
300

What decimal number is represented by the Hexadecimal number 3E?

62

300

What is wrong with the following code?

var i = 0;

while (i < 20){

     println("Hi");

}

Infinite loop

300

How many players make up a Water Polo team?

7

400

What is the benefit of the fault-tolerant nature of Internet routing?

The ability to provide data transmission even when some connections between routers have failed

400

What are the 4 parts of the HTML skeleton?

<!DOCTYPE HTML>

<html>

      <head>

      </head>

      <body>

      </body>

</html>

400

How many bits are in a kilobyte?

8,000 bits

400

var count = 5;

for(var i = 3; i < 7; i +=2){

    count += i;

}

print(count);

13

400

What name is given in Geometry to a triangle with three different sides?

 Scalene

500

Spell the name of the algorithm that is used to determine the shortest path between routers.

Djikstra's Algorithm

500

Find the 3 mistakes:

<table border="1">
    <tr>
        <th>Title<th>
        <th>Artist</th>
        <th>Length</th>
    </tr>
    <td>
        <td>CD Jam</td>
        <td>Rooney Pitchford</td>
        <td>3:55</td>
    </tr>
    <tr>
        <td>Memory</td>
        <td>Tom Misch</td>
        <td>5:41</td>
    </tr>
</tables>

<table border="1">
    <tr>

        <th>Title<th>
        <th>Artist</th>
        <th>Length</th>
    </tr>

    <td>
        <td>CD Jam</td>
        <td>Rooney Pitchford</td>
        <td>3:55</td>

    </tr>
    <tr>
        <td>Memory</td>
        <td>Tom Misch</td>
        <td>5:41</td>
    </tr>

</tables>

500

What is the decimal value of 1101 + 1011?

11000 binary = 24 decimal

500

var n = 0;

while( n < 20){

    print(n % 4 + "  ");

    if(n % 5 == 2){

           n += 4;

    }

    else{

           n += 3;

    }

}

0  3  2  1  0  0  3

500

What year was the Salinas High School bell tower built? 

1920

M
e
n
u