When a file is sent through the internet what can be done to the data to increase the speed at which it transfers?
What is compress
DISPLAY (20 % 4) + 3
What is 3
The type of data represented with GIF, PNG, JPEG, BMP file formats.
What is images or pictures
___ distinct numbers can be represented with 9 bits
What is 512
Creating a digital representation of a real-life idea or thing will require _____________.
What is abstraction
A loop designed specifically to loop a specific number of times.
What is a for loop
How would we represent the number 5 in binary using 5-bits?
What is 00101
What will be the order of letters printed to the console when this program is run?
print("a");
letters();
letters();
function letters(){
print("b");
print("c");
}
What is abcbc
This structure can hold a sequence of data values of any data type, and can grow and shrink as needed
What is a list.
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 % 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.
(MoveForward)
(MoveForward)
(TurnRight)
(MoveForward)
(TurnRight)
(MoveForward)
(MoveForward)
(TurnRight)
(MoveForward)
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. Name the type of error that occurred.
What is an overflow error