Vidyalelo
R Programming · Q76

Control Structures in R Programming

Programming · R Programming · question 76

Q76

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 <- (3, 2, 4)
B.
Z <- (3, 6, 4)
C.
Z <- (3, 4, 5)
D.
Z <- (3, 4, 4)
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board