The Internet
Data
Digital Information
Let's Code
Let's Code Again
100
Before conducting ecommerce on a site, one should ensure that a safe connection has been established based on the protocol such as https://. In this case, the hypertext transfer protocol is ______.
What is secure
100

A collection of large, complex data sets, including structured and unstructured data, which cannot be analyzed using traditional database methods and tools

What is Big data

100

What does RGB mean?

What is red, green, blue

100

A finite set of instructions that accomplish a task.

What is Algorithm 

100

The type of control structure that can be used for making decisions in a program based on the value of a Boolean expression.

What is an if statement 

200
The Internet depends on a layered communication system of _______ that manage abstractions.
What are protocols
200

Individual facts, statistics, or items of information, often numeric

What is data

200

How many total numbers can be represented with an 8-bit binary (base-2) system?

What is 256?

200

What does this code print:


function main() {

    console.log("Hello world!");

}


main();

What is Hello World

200
The process of placing a loop inside another loop.
What is nesting
300
Websites for a college or university should have this domain extension.
What is .edu
300

The practice of obtaining input or information from a large number of people via the Internet.

What is Crowdsourcing 

300

This refers to creations of the mind, such as inventions, artistic and literary works, designs, and symbols, names, and images used in commerce

What is Intellectual Property

300

What data type They  hold a single simple value?

What is Primitive Data 

300

Named element in a JavaScript program that is used to store and retrieve data  

Variable

400
An attempt to deny users access to a Web site's resources by flooding the website with requests from multiple systems.
What is a Distributed Denial of Service (DDoS) attack
400

Scientific research conducted in whole or part by distributed individuals, many of whom may not be scientists, who contribute relevant data to research using their own computing devices.

What is Citizen Science

400

A number expressed in the base 2 numeral system?

What is Binary

400

In JavaScript, the symbols + - * and / are called?

What is Operators

400

This type of variable or expression can have only two values.

What is Boolean

500
The system used for translating a web address like www.google.com into an IP address that can be used to connect to the site's server.
What is the Domain Name System (DNS)
500

Data about Data

Metadata

500

Convert 2 into a 4 bit binary number

What is 0010

500

Alert(message), close() and reset() are called

What is an Methods

500

iThe difference between a single "=", a double "==" and triple "===" is this. 

What is "

= stands for assignment,

 == stands for equality comparison and

 === stands for exact comparison"?