The hiding/layering of information.
What is Abstraction?
RFC
What is Request For Comments?
A logic gate that has to have both inputs be true for the output to be true.
What is an and logic gate
Domain Name System
What is DNS?
Find the value of a.
for(var i = 0; i < 4; i++)
{
var a = a * i;
}
What is 0?
A problem solving approach in which you break down a system to gain insight into the sub-systems that make it up.
What is Top-Down Design?
GIF uses this type of compression.
What is lossless?
An extra piece of information that you pass to the function to customize it for a specific need.
What is a Parameter?
IP
What is Internet Protocol?
This is a collection of commands made available to a programmer
What is API?
#153C2E corresponds to these RGB values
What is R:21 G:60 B:46.
When sending a response the most efficient method will require no more than how many bits.
What is 2 bits?
A program designed to run blocks of code or functions in response to an event.
What is Event-driven programming?
IETF
What is Internet Engineering Task Force?
a = 10;
b=6;
c=2
(5+a) (b+c)/10
What is 12?
The color purple can be written in four different ways:
Purple
0111 1111 0100 1111 1100 1001
#7F4FC9
R:127 G:79 B:201
The way of writing purple that uses the lowest level of abstraction is .
What is 0111 1111 0100 1111 1100 1001?
Small chunks of information that have been carefully formed from larger chunks of information.
What are Packets?
a=2, b=6, c=12
a=2b-a
b=3-a+c
c=ab-c
Find c
What is 38
HTTPS
What is HyperText Transfer Protocol Secure?
What is the difference between mp3 and wav audio files?
mp3 is lossy conpressed audio data and wav files are uncompressed audio files
The internet is composed of many layers. Higher level layers depend on the functionality of lower levels without worrying about how they work. List the layers in order of highest to lowest.
What is Physical Network, TCP, IP?
The principle that Internet service providers should enable access to all content and applications regardless of the source, and without favoring or blocking particular products or websites.
What is Net Neutrality?
A data structure in JavaScript used to represent a list.
What is an Array?
What is IDE?
Integrated development environment
32mod3
What is 2?