Two Vectors M And N Are Defined As M Lt C3 2 4 And N Lt C1 2 #389
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.
This multiple choice question (MCQ) is related to the book/course gs gs110 R Language. It can also be found in gs gs110 Control Structures, Functions, Scoping Rules, Loop Functions and Debugging - Functions - Quiz No.3.
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.
Z <- (3, 2, 4)
Z <- (3, 6, 4)
Z <- (3, 4, 5)
Z <- (3, 4, 4)