The most basic form of data representation.
What is binary?
Using the commands: moveForward(), rotateLeft(), rotateRight() and REPEAT iteration,
write a program to get the robot to the grey square.
REPEAT 2{
moveForward()}
rotateRight()
REPEAT 4{
moveForward()}
rotateLeft()
REPEATE 2{
moveForward()}
A systems ability to transmit data even with the presence of a broken connection
What is fault-tolerance?
What is the difference between the purpose and functionality of a program?
The purpose explains why it was created, while the functionality explains how it works.
Pieces of data are stored in these and sent in any order to another location?
What is a packet?
The minimum amount of bits needed to represent an album of 10 songs.
What is 4 bits?
If the value of a is 5 and b is 7, what is displayed after running this code?
IF a>b
DISPLAY (a+b)
ELSE
DISPLAY(a-b)
-2
A method that uses a program to record keystrokes without a users knowledge?
What is keylogging?
An error that produces an output that in not desired by the programmer
What is a logic error?
Controls the method by which messages are broken down into packets and then reassembled when they reach their final destination
What is TCP?
A photo of a flower is stored on a local hard drive. Within this photo, we also store the location and time it was taken. What is this information called?
What is metadata?
To qualify for a summer internship, a student must be either at least 15 or 10th grade or higher, but not yet 18 years old.
Using variables a for age and g for grade, write a boolean expression that will evaluate to TRUE if a student qualifies for the internship
(a \geq 15 or g>= 10) and a<18
What is the difference between the Internet and the World Wide Web?
The World Wide Web is a system of linked pages, programs and files that is accessed via a network called the Internet.
The Internet requires public key encryption, a form of asymmetric encryption. This is used to decrypt information sent to a computer.
What is the difference between IP V.4 and IP V.6
The amount of bits increases to assign a device a unique IP
Algorithm used to compress files with no change to the files original properties. (PNG)
Lossless Compression Algorithm
567908 MOD 40
28
This aspect makes it so that a parallel computing system will function more efficiently than a sequential computing system.
An object or product created utilizing some form of computing device
What is a computational artifact?
The maximum bitrate of a system is called what?
The bandwidth
Convert this base 10 value to binary: 39
100111
A binary search method is used to search a list of values from 0-99. The list has been pre-sorted. How many iterations would it take to find the number 82?
7 iterations
A computer has two processes that run in parallel. Process A takes 30 seconds, while Process B takes 45 seconds. What is the difference in execution time between running in parallel vs. one after the other?
30 seconds
Why would an artist use a Creative Commons license?
So others can sample or use the artist's work in their own projects
The World Wide Web uses this protocol and system to fetch user website requests.
What is HTTP and DNS?