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?
The 4 basic steps of computing.
What is input, output, processing and storage?
What a byte is made of.
What is a bit?
What is the keyword we use to create a new function
def
Name an object in python.
What is a class?
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?
myNum = myNum + 2
What is processing?
What a bit is made of
What is 1 or 0?
Where do arguments for functions go?
What are ()?
What do we call functions inside of a class?
What is a method?
Python
What is an interpreted Language?
input(What is your name?)
What is input?
What is 1024?
What is the symbol we put at the end of a function definition?
What is :?
2 of the 3 scopes of data in an object
What is public, private, and protected?
Java / C++ / C
What is a compiled language?
print(myNum)
What is output?
The amount of bytes in a gigabyte
What is 1,000,000,000?
Keyword for leaving a function.
What is return?
The function that initializes a class.
What is __init__()?
HTML
What is a markup language?
What is input, processing, and storage?
Name the first 5 Prefixes for bytes (excluding regular bytes)
What is kilo, mega, giga, tera, and peta?
def tricky(x,y) :
z = x + y
return y + 2
print(tricky(4,2))
What does this return?
What is 4?
What does the self keyword mean?
What is a class instance referring to itself?