BINARY
(BEEP BOOP)
TREES & ALGORITHMS
(LEAFY THINGS)
MATRICES
(NOT ALWAYS SQURE)
INHERITANCE
(I AM YOUR FATHER)
200

The result of the operation:

(0b1111 & 0b1010) | 0b0100

What is 0b1110 or 14?

200

The final node in a tree that usually only holds information for return

What is a Leaf?

200

The `b` in m[a][b]

What is the Column Index?

200

The `super()` method returns

What is the object as Parent Class?

400

The result of the operation:

(0b1111 >> 2) & ob0001

What is 0b0001 or 1?

400

The Two Pass Algorithm uses the first pass to do this

What is Gather Data?
400

The `r` in the below code. NOTE: `mat` is a list of lists of integers, mat: list[list[int]]:

for r in mat

What a List of Items in that row?

400

The printed output of the following code

What is "hi"?

600

To decode a binary number you
_______ then you _____

What is shift right then mask?

600

The `foo` method does the follow

It determines if a key is in a tree?

600

The function below does

What is a list with the sums of each column?

600

The printed response for the following code

What is `I'm walkin' here!`?

800

The steps taken to encode two binary words (b1 and b2) into b1b2 are that you...

_____ b1 and ____ with b2

What is Shift Left b1 and OR with b2?

800

The code needed in line 9

What is `sum += child.foo()`?

800

An Identity matrix is a matrix that is all zeros except with 1's along the diagonal

The code on line 5 to complete the funciton

What is `row[a] = 1`?

800

The printed result

What is `2`?

M
e
n
u