Basic Lingo
Symbols
Pick Up Lines
It's All Variable
Do you really know Mr. Adam?
100

What is an algorithm?

A set of step by step instructions used to solve a problem.

100

This punctuation is used to make an input into a string.

Quotation marks. " "

100

A line of code that prints the line "Hello World"

print("Hello World")

100

What is a Variable?

A variable is a box that holds a value with a label.

100

If you went with this category for 100 before any other question was chosen then you are officially trying to dodge the coding based questions and you get -100 points.

If you chose this category for 100 but it wasn't the first question chosen then you automatically just get 100 points.

200

What is iteration, and what does it have to do with coding?

Iteration is another way of saying repeating, and it is referring to loops we use to control our programs. 

200

This symbol is used for assigning a variable.

An Equals sign. =

200
A line of code that multiplies two numbers together and prints the result.

print(5*4)

200

What are the three data types, or value types, that we have discussed that stored in a variable.

String, Float, and Integer

200

What is the name of Mr. Adam's baby.

Wilder

300

What is a byte?

A byte is 8 bits (single units of binary).

300

These are used to compare the size of different data.

Greater than and less than symbols. < >

300

A line of code that asks the user for their name and allows the user to type their name in response and save it as a variable.

name = input("What is your name?")

300

What is the default value type for a variable?

String

300

How does Mr. Adam get to school every morning?

Walks from his house.

400

What type of error would you get if you put a comma in the wrong place?

A Syntax Error.

400

This symbol is used to make the compiler ignore a line of code without deleting it. 

What is the pound symbol (or hashtag). #

400

A line of code that asks the user for their age and saves it as a variable that is an integer data type.

num1 = int(input("What is your age?"))

400

What is the difference between Float and Integer values?

An integer is a whole number and a float is a decimal number.

400

What has been the background picture on Mr Adam's laptop the whole year? (Bonus points if you know the location of where the picture was taken)

Ms. Ellen in a fjord in Norway.

500

What is an input statement?

An input statement is a line of code that receives whatever the user types in and uses it in the program.

500

What symbols would you use to compare two data are equal to each other.

Double equals sign. ==

500

Three lines of code. The first line asks the user for the price of the first item and saves it as a float type variable. The second line asks the user for the price of the second item and saves it as a float type variable. The third line adds the two variables together for a total.

item1 = float(input("What is the cost of the first item?"))

item2 = float(input("What is the cost of the second item?"))

print("total is", item1+item2)

500

When creating the label for a variable that has more than one word, what can you not do?

A variable label can not have spaces in it.

500

When you are all working in groups Mr. Adam writes numbers on the marker board, usually between the ranges of negative 2 and positive 2. What do those numbers mean?

Absolutely nothing. He just started to write them on a whim to see if you all would notice, and to see how you responded if you did notice.