1.

Two vectors M and N are defined as M <- c(3, 2, 4) and N <- c(1, 2). What will be the output of vector Z that is defined as Z <- M*N.

A. Z &lt;- (3, 2, 4)
B. Z &lt;- (3, 6, 4)
C. Z &lt;- (3, 4, 5)
D. Z &lt;- (3, 4, 4)
Answer» E.


Discussion

No Comment Found