Logo

R Questions Set 10:

Quiz Mode

R Commander is used to ___________ data in R.

1
2
3
4

Solution:

What function is used to create data frames?

1
2
3
4

Solution:

What will be the output when executing log(-3.1) in the R console?

1
2
3
4

Solution:

One way to pass data around in R is by de-serializing the R object with _____.

1
2
3
4

Solution:

What will be the data type of the vector if you concatenate a number and NA?

1
2
3
4

Solution:

Accessing elements in a data structure is achieved through a process called ________

1
2
3
4

Solution:

The most convenient way to use R is at a graphics workstation running a windowing system.

1
2
3
4

Solution:

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

1
2
3
4

Solution:

Which of the following R functions produces the variance-covariance matrix?

1
2
3
4

Solution:

What is done to curvilinear relationships in linear regression?

1
2
3
4

Solution: