Before conducting ecommerce 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 ______.
What is secure (or encrypted)
This is the evaluation of the expression (20 MOD 4) + 3
What is 3
This many distinct numbers can be represented with 9 bits
What is 512
This is the base 16 representation of the base 2 number 11010011 11101001
What is D3E9
RGB color values produce colors by representing colors using 3 values, each of which typically uses this many bits.
What is 8 bits
Simplify the expression (A or (not(B) and C)) or (C and not A) or not(C)
What is true
Information traveling through the Internet is broken down into pieces with this name, which independently travel to their destinations
What are packets
The process of connecting strings of text together into larger strings, potentially including other types of information such as numbers
What is concatenation
In ASCII, capital A is represented by 65 in base 10. These letters are represented by the base 2 01000010 01000101
What is "BE"
This type of license specifies rules by which others may use content and contains acronyms like CC-BY and CC-SA
What is Creative Commons
Tiffani, who has a fast Internet connection, uploads a video she made to her YouTube channel. She notices that the video looks better on her home computer than on her channel. This practice by YouTube's servers is the likely reason Tiffani observes quality differences.
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 could replace MISSING CONDITION
What is num MOD 2 == 0
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
This many base 2 digits are needed to represent the same number of possibilities as a single base 8 digit
What is 3
What is the output from this code?
LINE 1 | d <- 10 | LINE 4 | e <- d | |
LINE 2 | e <- 20 | LINE 5 | DISPLAY (e) | |
LINE 3 | f <- 30 | LINE 6 | DISPLAY (d+e) |
What is 10 20