The Internet
There's math in computer science?
Algorithms
It's all just bits
Let's Code
100
The Internet depends on a layered communication system of these "rules" that manage abstractions.
What are protocols?
100
The binary number 00101001 in base-10.
What is 41?
100
Adding these to a command or procedure allows the user to have more control and reuse code in different programs.
What are parameters?
100
The name for the base 2 number system.
What is binary?
100
The type of control structure that can be used for making decisions in a program based on the value of a Boolean expression.
What is an IF statement?
200
www.sites.google.com within the domain of google.com is an example of this.
What is a subdomain?
200
The amount of distinct numbers can be represented with 10 bits
What is 1024?
200
The process of grouping commands into one procedure to make programs easier to write and manage complexity.
What is abstraction?
200
RGB color values mimic the human eye by representing colors using 3 values of ____ bits each.
What is 8 bits?
200
The process of placing a loop inside another loop.
What is nesting?
300
Websites for a college or university should have this domain extension.
What is .edu
300
HTML uses 6-digit hexadecimal notation for identifying colors on webpages so that the Red/Green/Blue values are each represented by a 2-digit Hexadecimal (16-bit) number. What is the decimal number for the Green color value in the color AC2B0F?
What is 43?
300
The best conditional procedure to use when the precise number of repetitions is unknown.
What is a while loop?
300
The number of combinations that can be created with two bits.
What is 4?
300
The failure to create a correct condition that controls the number of times a procedure will repeat results in this type of programming error.
What is an infinite loop?
400
An attempt to deny users access to a Web site's resources by flooding the website with requests from multiple systems.
What is a Distributed Denial of Service (DDoS) attack
400
d <- 10
e <- 20
f <- 30
e <- d
DISPLAY (e)
DISPLAY (d+e)
What is 10 20?
400
The first set of bits contains these instructions or information when sending an image.
What are the dimensions?
400
This encoding scheme allows computers to send text data.
What is ASCII?
400
Before using the arcRight command, you must always consider this first.
What is the orientation of the turtle?
500
The system used for translating a web address like www.google.com into an IP address that can be used to connect to the site's server.
What is the Domain Name System (DNS)
500
The binary number 1.001 in base-10.
What is 1.25?
500
Assuming that forward tells a robot to move forward by 10 pixels and turn tells it to turn right by 90 degrees, this shape would be drawn by the following algorithm. forward forward turn forward turn forward forward turn forward turn
What is a rectangle?
500
To correctly write a computer program adds the decimal (base 10) numbers 9 and 3, use this number of bits in the coding scheme.
What is 3?
500
The result of running the following code: i <- 0
sum <- 0
REPEAT UNTIL i = 5
sum <- sum + i
i <- i + 1
DISPLAY (sum)
What is 10?
M
e
n
u