2020-10-06 23:10:08 +05:30

665 B

id, challengeType, isHidden, videoId
id challengeType isHidden videoId
5e9a0a8e09c5df3cc3600ed9 11 false VNWAQbEM-C8

Description

Tests

question:
  text: |
    What code would produce the following array?

    ```py
    [[1. 1.]
    [1. 1.]
    [1. 1.]
    [1. 1.]]
    ```
  answers:
    - |
      ```py
      a = np.ones((2, 4))
      b = a.reshape((4, 2))
      print(b)
      ```
    - |
      ```py
      a = np.ones((2, 4))
      b = a.reshape((2, 4))
      print(b)
      ```
    - |
      ```py
      a = np.ones((2, 4))
      b = a.reshape((8, 1))
      print(b)
      ```
  solution: 1