Computer science and Python
Logical operators and Comparisons
Data Types
Variables
Input and Output
100

What is code?

How humans talk to computers through a language. 

100

What are the logical operators?

and, or, and not. 

100

What is an integer 

A whole number

100

What are variables used for?

Used to store something for use later on. 

100

What is input?

Information that is PUT IN to something. 
200

What is python?

A software language similar to the English language. 

200

What is the logical operator "and"?

Combines two statements that are both true. 

200

What data type is 1.5?

float

200

What is the variable in the following code?

yourName = "Ms.Smallwood" 

print(yourName) 


youName

200

What is output?

What comes out of something. 

300

What is a computer?

A device that is used for working with information (like number, words, pictures, movies, or sounds) with a short display of information. 

300

What is the "not" logical operators?

Reverse the result, return false if the result is true. 

300

What is a bool data type?

true or false

300

What is the variable in the code below?

num = int(input("How old are you?"))

print(num+15)

num 

300

What is the output in python?

console

400

What does a programmer do?

A person who writes the code that tells the computer what to do. They make games, websites, robots, and phones. 
400

List the comparisons

== Equals 

!= Does not equal 

>= greater than or equal to 

> greater than 

<= less than or equal to 

< less than 

400
What data type is used for text and sentences like "Hello World". Name the data type and acronym. 

String or str

400

What is a the variable in the code below? 

Jar1 = 5

Jar2 = 10 

print(jar2) 

Jar1 and Jar2

400

What is the python input function?

The input() function waits for users to type some text and press the enter key in the console. 
500

List the arithmetic operators in python. 

Addition + 

Subtraction - 

Multiplication * 

Float division / 

Integer division // 

Power **

500

Ms. Smallwood picked one of the animals in the picture. Have your team ask the and, or and not questions to determine what the animal is. 

Reindeer 

500

What are data types?

A set of possible values that can be used in a program. 

500

What are the variable conventions? 

1. Never start with a number 

2. Use meaningful names 

3. Variable names are case-sensitive 

4. Variable names should not be the same as python keywords. 

500

How do you use input with an integer and float? Write a coding example.

variable = int(input("")))

variable - float(input(""))

M
e
n
u