Factors are created using the . . . . . . . . function.
Select an option to see the answer and solution.
First component of the list can be accessed by . . . . . . . .
Select an option to see the answer and solution.
Which function is used to enter in data at the terminal?
Select an option to see the answer and solution.
Which are indexed by either row or column using a specific name or number?
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- list(1, "a", TRUE, 1 + 4i)
> x
Options are not available for this question.
Select an option to see the answer and solution.
What will be the output of the following R code?
> m <- matrix(1:4, nrow = 2, ncol = 2)
> dimnames(m) <- list(c("a", "b"), c("c", "d"))
> m
Select an option to see the answer and solution.
Which of the following is used for reading tabular data?
Select an option to see the answer and solution.
Point out the correct statement?
Select an option to see the answer and solution.
Computation with vectors is achieved using an element-by-element operation for avoiding . . . . . . . .
Select an option to see the answer and solution.
A data frame is a special type of list where every element of the list has . . . . . . . . length.
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- c(1, 2, NaN, NA, 4)
> is.na(x)
Select an option to see the answer and solution.
Accessing elements is achieved through a process called . . . . . . . .
Select an option to see the answer and solution.
A . . . . . . . . is an R-object which can contain many different types of elements inside it.
Select an option to see the answer and solution.
Data frames can be converted to a matrix by calling data . . . . . . . .
Select an option to see the answer and solution.
On what basis of a variable, OS allocates memory and decides what can be stored in the reserved memory?
Select an option to see the answer and solution.
Which is more general than a matrix, in that different columns can have different modes?
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- c("a", "b", "c")
> as.logical(x)
Select an option to see the answer and solution.
Lists can be created using the . . . . . . . . function.
Select an option to see the answer and solution.
Joining two lists can be achieved either using the . . . . . . . . function.
Select an option to see the answer and solution.
R objects can have attributes, which are like . . . . . . . . for the object.
Select an option to see the answer and solution.