x++;
The colors in an RGB code
Red, green, blue
The symbol that tells JavaScript you're making a string
""
World Wide Web
"and" in JavaScript.
&&
Breaking a larger task into smaller parts
Decomposition or top-down design
Byte
An operator that finds the remainder of division.
%
A set of computing devices working together
Computing system
The outcome of 2 <= 5
true
If x = 6, the output of:
if(x > 10){
print("*");
}else{
print("-");
Compression that can't be reversed
Lossy compression
The operation used in 2 ** 4.
exponent
This identifier for systems and networks uses hexadecimal.
IPv6
An operator that makes true statements false, and false statements true.
If x is 7, the output of:
while(x > 3){
print("*");
x--;
print("*");
********
This binary number in hex: 1011
B
5.5 and -2.0 are examples of this data type.
float
The rules computers follow to send and receive data.
HyperText Transfer Protocol
The outcome of 1 > 3 && 1 > 7
false
The output of:
for(let i = 0; i < 2; i++){
for(let j = 5; j > 2; j--){
print("*")
******
This hex number in decimal: A8
168
The default size of our canvas.
400x400 pixels
A network with 4 computers and 6 connections.
Fully connected network
The outcome of !(6 < 3 || 6 > 10)
true