What is the Internet?
A series of networks that connects computing devices and servers for means of communication
What does the p stand for in the <p> tag?
Paragraph
What is the name of the number system that is only represented by 1 and 0?
Binary
What is a boolean variable?
A variable that can only hold true or false
What is Ms. Trayford's favorite animated show?
Avatar: The Last Airbender
What is the order of network sizes from smallest to largest?
LAN - MAN - WAN
What does HTML stand for?
Hypertext Markup Language
How many different digits are used in the Hexadecimal number system?
16
A store has 20 apples in its inventory. How can you store this information in a JavaScript variable?
var apples = 20;
Which famous computer scientist made the machine that defeated the German Enigma Machine?
Alan Turing
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
What is the result of the following HTML code:
<ol>
<li>Bread</li>
<li>Milk</li>
<li>Eggs</li>
</ol>
What decimal number is represented by the Hexadecimal number 3E?
62
What is wrong with the following code?
var i = 0;
while (i < 20){
println("Hi");
}
Infinite loop
How many players make up a Water Polo team?
7
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
What are the 4 parts of the HTML skeleton?
<html>
<head>
</head>
<body>
</body>
</html>
How many bits are in a kilobyte?
8,000 bits
var count = 5;
for(var i = 3; i < 7; i +=2){
count += i;
}
print(count);
13
What name is given in Geometry to a triangle with three different sides?
Scalene
Spell the name of the algorithm that is used to determine the shortest path between routers.
Djikstra's Algorithm
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>
What is the decimal value of 1101 + 1011?
11000 binary = 24 decimal
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
What year was the Salinas High School bell tower built?
1920