Before conducting e-commerce on a site, one should ensure that a safe connection has been established based on the protocol such as https://. In this case, the hypertext transfer protocol is ______. Hint: what does the "s" in "https:" stand for?
What is secure
DISPLAY (20 % 4) + 3
Hint: the "%" is the modulo operator
What is 3
The type of data represented with GIF, PNG, JPEG, BMP file formats.
What is images or pictures
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 (or selection, or branching)
The Internet depends on a layered communication system of _______ that regulate communication on the Internet. Hint: starts with a "p"
What are protocols
How many items can you represent with 4 bits
What is 16
Bundling commands into one container for making programs easier to write and manage is _______________.
What is (procedural) abstraction
What is functions
What is procedures
How many bits do you need to encode all 10 finders of your hands?
what is 4 bits
What do you call the process of adding items to an existing list?
appending
Websites for a college or university should have this domain extension.
What is .edu
Colors can be represented by Red/Green/Blue values on each pixel. These values can be expressed in binary. Given the binary code 000 101 000, what is the DECIMAL value of the green channel?
What is 5
What is the name of the algorithm used to look for items in a list?
What is a traversal
Sarah needs the Microsoft Office suite in order to complete her school assignments so she borrows her aunt’s software CDs in order to load another copy on her new laptop. What type of infringement has Sarah committed?
What is piracy
The failure to create a correct condition that controls a repeat statement results in this type of programming error.
What is an infinite loop
d <- 10
e <- 20
f <- 30
e <- d
DISPLAY (e)
DISPLAY (d+e)
What is 10 20
Which is more efficient: a binary search or a linear search?
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
The following code should display "even" if the positive number num is even.
IF (MISSING CONDITION)
DISPLAY ("EVEN")
Give a Boolean expression that could replace MISSING CONDITION
What is num MOD 2 == 0
The binary number 1101 in decimal numbers
What is 13
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
i <- 0
sum <- 0
REPEAT UNTIL i = 4
sum <- sum + i
i <- i + 1
DISPLAY (sum)
What is 6