This system translates common URL's such as "www. facebook.com" into IP Addresses computers can understand.
What is Domain Name System (DNS)?
DISPLAY (20 mod 4) + 3
What is 3
The Internet depends on a layered communication system of _______ that manage abstractions, such as IP, TCP, UDP.
What are protocols
___ distinct numbers can be represented with 8 bits
What is 256
Bundling commands into one container for making programs easier to write and manage is _______________.
What is (procedural) abstraction
The process of placing an if-statement inside another if-statement
What is nesting?
This is three separate numbers that representing the different light intensities for a particular pixel
What is RGB Triple
This concept ensures fault tolerance by adding multiple nodes in a network to ensure that no path becomes completely separated from the network.
What is redundancy?
This value has the highest intensity in the following RGB Triple:
(1100 0000 , 0001 1111, 0101 1111)
What is Red?
In determining the best route to take on recent trip, a maps application gave the user three options based on traffic patterns, road construction, and roadways. This term refers to the method for choosing the best alternative among the three possible routes.
What is a heuristic solution
This is the concept of being able ignore information or detail to focus on the relevant concepts. A function in programming is an example of this
What is an abstraction?
The following will display after the code is ran:
d <- 5 MOD 2
e <- 11 MOD 6
DISPLAY (d+e)
What is 6?
The following code should display "even" if the variable num positive even number.
IF (MISSING CONDITION)
DISPLAY ("EVEN")
Give a Boolean expression that could replace MISSING CONDITION
What is num MOD 2 == 0
Tiffani has a channel on a popular video sharing site and has over 100 thousand subscribers. After making her latest video and uploading to her channel, she notices that the quality of video better on her home computer than the uploaded version. This is the likely cause of Tiffani’s video quality.
What is lossy compression
This protocol is used mainly with things such as livestreams, where the user wants the data as quick as possible, not necessarily 100% of the information will arrive.
What is the User Datagram Protocol (UDP)?
This number/expression represents the total possible colors when encoding a pixel with 24 bits (8-bits per Red, Green, and Blue values).
What is a 2563.
i <- 0
sum <- 0
REPEAT UNTIL i = 4
sum <- sum + i
i <- i + 1
DISPLAY (sum)
What is 6
This is the idea that the internet is not readily available within society which create a larger socioeconomic gap.
What is digital divide?