R Programming Quiz


Play this quiz that will help you to excel in R certification exams, placements etc. This R programming quiz consist of 10 questions that you need to solve in 10 minutes. We’ve specially designed this quiz so that you can quickly acquaint to the pattern of questions you can be asked in placement drives, certification exams etc. This test enables you to assess your knowledge of R programming.

Take the Free Practice Test



R MCQs

Practice R Programming MCQ Questions, which will help you to understand R Programming language and will help in developing statistical softwares.

R Quiz

Try Free R Quiz, to start a quiz you need to login first, after login you will get start quiz button and then by clicking on that you can start quiz. You will get 10 Minutes to answer all questions.

R Quiz

1. What will be output for the following code?

v <- ""TRUE""
print(class(v))

logical
Numeric
Integer
Character

2. Which of the following package provide namespace management functions not yet present in base R?

stringr
nbpMatching
messagewarning
namespace

3. Which of the following syntax is used to install forecast package?

install.pack("forecast")
install.packages("cast")
install.packages("forecast")
install.pack("forecastcast")

4. What will be the output of the following R code?

> m <- matrix(nrow = 2, ncol = 3)
 > dim(m)

3 3
3 2
2 3
2 2

5. What will be output for the following code?

v <- TRUE
print(class(v))

logical
Numeric
Integer
Complex

6. In which statement terminates the loop statement and transfers execution to the statement immediately following the loop?

goto
switch
break
label

7. What will be output for the following code?

v <- LETTERS[1]
for ( i in v) {
   print(v)
}

A
A B
A B C
A B C D

8. What will be output for the following code?

> sqrt(-17)

-4.02
4.02
3.67
NAN

9. Point out the wrong statement?

Multi-line expressions with curly braces are just not that easy to sort through when working on the command line
lappy() loops over a list, iterating over each element in that list
lapply() does not always returns a list
You cannot use lapply() to evaluate a function multiple times each with a different argument

10. Which statement simulates the behavior of R switch?

Next
Previous
break
goto

Results