Report Bug
Qus :

What will be the output of the following ?

import numpy as np
print(np.maximum([2, 3, 4], [1, 5, 2]))

Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

import numpy as np
print(np.maximum([2, 3, 4], [1, 5, 2]))


A. [1 5 2]
B. [1 5 4]
C. [2 3 4]
D. [2 5 4]


Solution
D. [2 5 4]






Report Bug