Compiled, Interpreted, who knows?
Computing Basics
Bites of Bytes
Function Junction
Objection!
100

The name of the process that identifies data types, handles string length and data structures and runs the code. The code will execute until it finds an error. It doesn't make an executable.

What is an interpreter?

100

The 4 basic steps of computing.

What is input, output, processing and storage?

100

What a byte is made of.

What is a bit?

100

What is the keyword we use to create a new function

def

100

Name an object in python.

What is a class?

200

The name of the process that turns a programming language into assembly and machine code. Will not work if there are any bugs in the code. Creates an executable.

What is a compiler?

200

myNum = myNum + 2

What is processing?

200

What a bit is made of

What is 1 or 0?

200

Where do arguments for functions go?

What are ()?

200

What do we call functions inside of a class?

What is a method?

300

Python

What is an interpreted Language?

300

input(What is your name?)

What is input?

300
The size of a unit is made up of how many of the previous unit?

What is 1024?

300

What is the symbol we put at the end of a function definition?

What is :?

300

2 of the 3 scopes of data in an object

What is public, private, and protected?

400

Java / C++ / C

What is a compiled language?

400

print(myNum)

What is output?

400

The amount of bytes in a gigabyte

What is 1,000,000,000?

400

Keyword for leaving a function.

What is return?

400

The function that initializes a class.

What is __init__()?

500

HTML

What is a markup language?

500
userChoice = int(input("What is your credit card number?"))

What is input, processing, and storage?

500

Name the first 5 Prefixes for bytes (excluding regular bytes)

What is kilo, mega, giga, tera, and peta?

500

def tricky(x,y) :

    z = x + y

    return y + 2


print(tricky(4,2))

What does this return?

What is 4?

500

What does the self keyword mean?

What is a class instance referring to itself?