Q. 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.
β
Correct Answer: (D)
Z <- (3, 4, 4)
You must be Logged in to update hint/solution