OD
(Choose 1 answer)
Consider the two following random arrays "a" and "b":
a = np.random.randn(2, 3) # a.shape = (2, 3)
b = np.random.randn(2, 1) # b.shape = (2, 1)
c = a + b
What will be the shape of "c"?
A. c.shape = (3, 2)
B. c.shape = (2, 1)
C. The computation cannot happen because the sizes don't match. It's going to be "Error"!
D. c.shape = (2, 3)
Exit 49