Que: What will be the output of the following R code?

x <- c(3, 7, NA, 4, 7)
    y <- c(5, NA, 1, 2, 2)
    x + y
a. Symbol
b. Missing Data
c. 5
d. 15.5
Answer: Missing Data

Leave a Comment