Python
Numpy
Random
100

When you access an element in a list, string, etc.

What is indexing?

100

The function to create an array.

What is np.array([])?

100

The repetition of a process

What is iteration?

200

An immutable collection of items.

What is a tuple?

200

What does np.reshape() do

It changes the dimensions of the array. You specify rows and columns.
200

Which values will this output print(arr[1, 2:4])

The values in the 3rd and 4th columns in the second row

300

An unordered collection of key value pairs.

What is a set?

300

What will print(np.arange(4)) output?

0 1 2 3
300

Does "for i in array" iterate through a row or column? *Hint take a look at the word array* 

Row

M
e
n
u