Vocabulary
Variables
Lists
Random
Random #2
100

What is Losless Compression?

A data compression algorithm that allows the original data to be perfectly reconstructed from the compressed data.

100

How do you define a variable?

Using the operation "var"

100

What is a list?

An ordered collection of elements.

100

In the list below, what is at index 5?

var lists = [cat, dog, rat, horse, fish, gorilla, koala]

Gorilla

100

What is the World Wide Web?

An interconnected system of public web pages accessible through the Internet.

200

What is the internet?

A group of computers and servers that are connected to each other.

200

How do you change a variable?

Making the variable = something new. Ex:

var cats 

cats = 5

200

What is the first index number in java? 

0
200

What will be displayed after this code?

var x = 4

x = x+5

console.log(x)

9

200

What is a binary question?

A question that has only two answers.

300

What is ASCII?

American Standard Code for Information Interchange. ASCII is the universally recognized raw text format that any computer can understand.

300

What are the 7 Logical Operators? 

= &&, ||, != (and, or, not)

300

What is the first index number in Pseudo Code?

1

300

What is metadata?

Data that includes information such as height width, resolution, location, and or time stamp of an image

300

What is an IP address?

A number assigned to any device that is connected to the Internet.

400

What is an Overflow Error?

When the execution of a set of instructions return a value outside of this range.

400

What is a Boolean Expression?

A logical statement that can either be true or false.

400

How do you define a list?

var list = [];

400

What is Lossy Compression?

A form of compression where less-than-totally-necessary information is thrown out in order to reduce the size of the data. The eliminated data is unrecoverable.

400

What is the line below?

hello world, my name is...

A string

500

What is the Digital Divide?

The idea that not everyone has equal access to the internet. Demographics such as household income, level of education, race and ethnicity, age, geographic location, and community type can affect an individual’s access to the internet.

500

What is an if statement?

A conditional statement that, if proven true, performs a function that may display information, change something on the screen, etc. 

500

What can you do to change a list?

Replace a number, add a number, insert a number, and remove a number.

500

What is Abstraction?

A simplified representation of something more complex.

500

What is a MOD operator?

A function that finds the remainder of division of one number by another.