Reducing Information and details to focus on essential characteristics.
What is Abstraction?
What type of information is the following variable is
var = "Hi Mrs. Swanson!"
What is a String?
Daily Double: The process of narrowing the search by halves continues until the target is found or until it is determined that the target does not exist in the list.
What is Binary Search?
Number of bits that 16 bytes is equal to .
what is 128?
Help to efficiently organize and find trends in information.
What is Data analysis techniques?
The protocol used by the world wide web.
What is HTTP (Hypertext Transfer Protocol)?
The common programing structure that implements "conditional statements".
What is a If statement?
Programs are broken into small pieces to be executed concurrently
What is Parallel Computing?
DISPLAY (20 mod 4) + 3
what is 3?
A piece of code that is capable of copying itself and typically has a negative effect, such as corrupting the system or destroying data.
What is Virus?
Time it takes for a bit to travel from its sender to its receiver.
What is Latency?
Any expression that evaluates to be true or false.
What is Boolean Expression?
All algorithms are made up of 3 types of programming statements
What are Sequential, iterative, selection?
Daily Double: The binary number 00101101 in base-10.
What is 45?
The gulf between those who have ready access to computers and the internet and those who do not.
What is digital Divide?
Daily Double: The principle that all traffic should be treated equally by Internet Service Providers.
What is Net Neutrality?
rational operators are ....
==,<,>,<=,>=,!=
A process that often uses a practical method or various shortcuts in order to produce solutions.
What is a heuristic approach?
d <-5
e <- 20
f <-40
e <- d
DISPLAY (e)
DISPLAY (d+e)
what is 5, 10?
A process that reverses encryption, taking a secret message and reproducing the original plain text.
What is Decryption?
The universally recognized raw text format that any computer can understand
What is ASII (American Standard Code for Information Interchange)?
What code will print all odd numbers from 1 to 100?
i <- 1
Repeat until i>100
{
<MISSING CODE>
}
Display (i)
i <- i +2
An evidence based approach to the study and interpretation of information.
What is Empirical Analysis?
HTML uses 6-digit hexadecimal notation for identifying colors on webpages so that the Red/Green/Blue values are each represented by a 2-digit Hexadecimal (16-bit) number. What is the decimal number for the Green color value in the color AC0BFF?
What is 11?
Large data sets that may be analyzed computationally to reveal patterns, trends, and associations.
What is Big data?