adplus-dvertising

Welcome to the Formats,Objects and Operations MCQs Page

Dive deep into the fascinating world of Formats,Objects and Operations with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Formats,Objects and Operations, a crucial aspect of R Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of Formats,Objects and Operations, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within R Programming.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Formats,Objects and Operations. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of R Programming.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Formats,Objects and Operations. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Formats,Objects and Operations MCQs | Page 6 of 10

Q51.
What will be the output of the following R code?
> x <- list(aardvark = 1:5)
> x$a
Discuss
Answer: (a).1 2 3 4 5
Q52.
Which of the following code extracts 1st element of the 2nd element?
> x <- list(a = list(10, 12, 14), b = c(3.14, 2.81))
Discuss
Answer: (a).x[[c(2, 1)]]
Q53.
What will be the output of the following R code?
> x <- list(aardvark = 1:5)
> x[["a", exact = FALSE]]
Discuss
Answer: (a).1 2 3 4 5
Q54.
What will be the output of the following R code?
> x <- c(1, 2, NA, 4, NA, 5)
> bad <- is.na(x)
> print(bad)
Discuss
Answer: (c).FALSE FALSE TRUE FALSE TRUE FALSE
Q55.
Which of the following is example of vectorized operation as far as subtraction is concerned?
> x <- 1:4
> y <- 6:9
Discuss
Answer: (b).x-y
Discuss
Answer: (a).Very less operations in R are vectorized
Q57.
What will be the output of the following R code?
> x <- 1:4
> y <- 6:9
> z <- x + y
> z
Discuss
Answer: (a).7 9 11 13
Q58.
What will be the output of the following R code?
> x <- 1:4
> x > 2
Discuss
Answer: (b).FALSE FALSE TRUE TRUE
Discuss
Answer: (c).Dates are represented by the DateTime class
Q60.
What will be the output of the following R code?
> x <- 1:4
> y <- 6:9
> x/y
Discuss
Answer: (b).0.1666667 0.2857143 0.3750000 0.4444444
Page 6 of 10

Suggested Topics

Are you eager to expand your knowledge beyond R Programming? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!