Data Types
Operators
Errors
Random
other
Vocabulary
100

An example of this data type is "Hello!"

What is a string?

100

This operator takes two integers or floats and looks like: +

What is addition operator?

100

The process of finding correcting any of the three kinds of errors in a program.

What is debugging?

100

The following lines of code have this error in them.

x = "Hello!

print(x)

What is a missing quotation mark?

100

Information a programmer writes after a # symbol that helps other programmers understand a program.

What is a comment?

200

An example of this data type is:

x = 1

What is an integer?

200

Some examples of these Python tokens are: 

-, +, and /

What is an operator?

200

a name for a problem in a program that causes an error.

what is a bug?

200

all of the following are examples of this:

if   while   +   =

What is a token?

200

To analyze a program's structure and syntax.

What is parsing?

300

An example of this data type is:

y = 2.33

What is a float?

300

This operator looks like: **

What is the Exponentiation operator?

300

An error in a program that makes it impossible to interpret since it cannot be parsed.

What is a syntax error?

300

This is a type of programming language that is like python, and is designed to be easy for people to read and write

What is a high-level language?

300

An intermediate language between source code and object code.

What is byte code?

400

an example of one of these functions is:

x = str(4)

What is a type conversion function?

400

This operator looks like this: %

What is the modulus operator?

400

An error where the computer performs a program with a different meaning than the programmer intended it to.

What is a semantics error?

400

The resulting value after the expression 

(45 // 6 + 23 % 4 - 8 * 2 )

is simplified.

What is -6.0?

400

A language that people design for specific purposes. These include programming languages.

What is a formal language?

500

the flowing is an example of this data type:

x = 5.5

what is a float?

500

This operator excepts two strings, and looks like: +

What is the concatenation operator?

500

An error that does not occur until the program has started to execute but that prevents the program from continuing.

What is a runtime error/exception?

500

This line of code could be added to the end of the flowing program, to print the age of 'John'

class John:

                      height = 5.4

                      favcolor = "blue"

                      age = 14

What is 

print( John.age ) 

?

500

A basic element of Python that is crucial to its syntax and structure. They are analogous to real words. Some examples are: if, while, str, int

What is a token?

M
e
n
u