(BEEP BOOP)
The result of the operation:
(0b1111 & 0b1010) | 0b0100
What is 0b1110 or 14?
The final node in a tree that usually only holds information for return
What is a Leaf?
The `b` in m[a][b]
What is the Column Index?
The `super()` method returns
What is the object as Parent Class?
The result of the operation:
(0b1111 >> 2) & ob0001
What is 0b0001 or 1?
The Two Pass Algorithm uses the first pass to do this
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?
The printed output of the following code
What is "hi"?
To decode a binary number you
_______ then you _____
What is shift right then mask?
The `foo` method does the follow
It determines if a key is in a tree?
The function below does
What is a list with the sums of each column?
The printed response for the following code
What is `I'm walkin' here!`?
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?
The code needed in line 9
What is `sum += child.foo()`?
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`?
The printed result
What is `2`?