The unique address given to each computer device.
What is IP address?
DISPLAY (20 mod 4) + 3
What is 3?
The image shows an example of this structure. (Sequencing, Selection, or Iteration)
What is iteration?
This is the name for the base 2 number system.
What is binary?
This is the maximum possible value of ans.
What is 16?
This is the food group of a tomato.
What is fruit?
Differing access to computing devices and the Internet, based on socioeconomic, geographic, or demographic characteristics
What is the digital divide?
___ distinct, total numbers can be represented with 8 bits.
What is 256?
Only being concerned with the main idea and ignoring details of a function or procedure.
What is (procedural) abstraction?
A text-editing application uses binary sequences to represent each of 100 different characters. What is the minimum number of bits needed to assign a unique bit sequence to each of the possible characters?
What is 7 bits?
These are the contents of yourList after this code segment is executed.
What is [10, 30, 50, 70]?
This would be your tip if you tipped 20% on a $15 bill.
What is $3.00?
This is the protocol for sending packets across the Internet that does error-checking to ensure all packets are received and properly ordered.
What is Transmission Control Protocol (TCP)?
This is decimal number 37 in binary.
What is 0010 0101?
Using an algorithm to find a "good enough" solution. Most generally used when finding the best solution takes unreasonable time. For example, finding the most optimal route for a postal office worker to take.
What is a heuristic solution?
This is the collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work, used when an author wants to give people the right to share, use, and build upon a work that they have created.
What is Creative Commons?
This is the run-time error which occurs when this cod executes:
i <-- 1
REPEAT UNTIL ( i = 4 ){
DISPLAY(i)
i <-- i + 2
}
What is an infinite loop?
This is the world's biggest island.
What is Greenland?
What is phishing?
d <-- 10
e <-- 20
f <-- 30
e <-- d
DISPLAY (e)
DISPLAY (d+e)
What is 10 20?
The binary search algorithm makes this vital assumption about the list of data being considered.
What is the data is sorted?
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 type of compression is the likely cause of Tiffani’s video quality.
What is lossy compression?
The following code should display "even" if the positive number num is even.
IF (MISSING CONDITION)
DISPLAY ("EVEN")
This Boolean expression should replace MISSING CONDITION
What is num MOD 2 == 0?
This is how many miles you would have to drive to get from New York to Los Angeles. Closest answer will get points.
What is 2,796.5 miles?
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)?
This is binary number 0010 1101 in decimal.
What is 45?
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?
A computer program uses 3 bits to represent integers. When the program adds the decimal (base 10) numbers 5 and 3, the result is 0. This is the type of error that occurred.
What is an overflow error?
i <- 0
sum <- 0
REPEAT UNTIL i = 4
sum <- sum + i
i <- i + 1
DISPLAY (sum)
This is displayed.
What is 6?
As of Friday 5/17/24, this is how many official streams the song "Not Like Us" by Kendrick Lamar has. Closest answer wins!
What is 70.9 million?