517 B
517 B
id, title, challengeType, isHidden, videoId
id | title | challengeType | isHidden | videoId |
---|---|---|---|---|
5e9a0a8e09c5df3cc3600ed3 | Basics of Numpy | 11 | true | f9QrZrKQMLI |
Description
Tests
question:
text: 'What will the following code print?:<pre>b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])<br>print(b)</pre>'
answers:
- '<pre>[[1.0 2.0 3.0]<br>[3.0 4.0 5.0]]<pre>'
- '<pre>[[1. 2. 3.]<br>[3. 4. 5.]]<pre>'
- '<pre>[[1. 3.]<br>[2. 4.]<br>[3. 5.]<pre>'
solution: 2