Quiz 2!
Let's test your knowledge of arrays with this quiz!
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What is the output of the the code below:
print(np.arange(1, 50, 6))
A.
[ 0 6 12 18 24 30 36 42 48]
B.
[ 1 7 13 19 25 31 37 43 49]
C.
[ 1 7 13 19 25 31 37 43]
D.
[ 6 12 18 24 30 36 42 48]
1 / 4
In the ...