1.
Which of the following functions is used to create data frames?
2.
What is the purpose of the plot() function in R?
3.
What is the output of the following R code:
X1 < -c(6, 2, 4, 1)
X2 < -c(2, 3)
X1 * X2
4.
What is the output of the following R code:
X1 < -1: 6
X2 < -2: 4
X1 + X2
5.
In R, which of the following statements is true?
6.
Which of the following statements is false in R?
7.
In R, which of the following statements about the subscripting is correct:
  1. The dimensions of arrays and data frames are subscripted independently.
  2. The subscripting matrix has as many rows as there are dimensions in the array.
  3. Lists are not subscripted just like other vectors.
  4. Arrays can be subscripted with a matrix of positive numbers.
8.
In R, which of the following statements about the na.rm argument is correct?
9.
In R, which of the following statements about the grid and *lattice packages is correct:
  1. Grid is a new graphical mode with the inherited system of graphical parameters
  2. Grid graphics cannot usually be combined or mixed with base graphics
  3. The main idea behind lattice is that of unconditional multiple graphs
  4. Lattice is essentially the implementation in R of the Trellis graphics of S-PLUS.
10.
In R, which of the following functions is used to changes a number from storage mode integer to storage mode double?