Online Exam Quiz

questionQuestion  1 to 30

Which operator is used for exponentiation in R?

  • ^
  • **
  • ^^
  • ^
Mark for review

Which function is used to calculate the median in R?

  • median()
  • med()
  • median.calc()
  • calc.median()
Mark for review

Which function is used to create a sequence of numbers in R?

  • sequence()
  • seq()
  • create()
  • range()
Mark for review

What does the any() function do in R?

  • Checks if any element in a vector is true
  • Checks if all elements in a vector are true
  • Checks if any element in a vector is false
  • Checks if all elements in a vector are false
Mark for review

Which package is used for creating plots and graphs in R?

  • plyr
  • ggplot2
  • reshape2
  • dplyr
Mark for review

What does the nrow() function do in R?

  • Counts the number of columns in a data frame
  • Counts the number of rows in a data frame
  • Counts the number of elements in a vector
  • Counts the number of unique values in a vector
Mark for review

What does the as.numeric() function do in R?

  • Converts a vector to numeric values
  • Converts a vector to character values
  • Converts a vector to logical values
  • Converts a vector to factor values
Mark for review

What is the output of sqrt(16) in R?

  • 2
  • 4
  • 8
  • 16
Mark for review

Which function is used to calculate the factorial in R?

  • fact()
  • factorial()
  • fact.calc()
  • calc.factorial()
Mark for review

What is the output of tolower("Hello World") in R?

  • HELLO WORLD
  • hello world
  • Hello World
  • hELLO wORLD
Mark for review

What is the output of mean(c(1, 2, NA, 4, 5), na.rm = TRUE) in R?

  • NA
  • 3
  • 3.33
  • 3.5
Mark for review

What is the output of typeof(TRUE) in R?

  • Logical
  • Numeric
  • Character
  • Complex
Mark for review

Which function is used to convert a matrix to a data frame in R?

  • as.data.frame()
  • to.data.frame()
  • convert.data.frame()
  • matrix.to.data.frame()
Mark for review

How can you convert a factor to a character vector in R?

  • as.character()
  • to.character()
  • char()
  • convert.character()
Mark for review

Which function is used to apply a function over the margins of an array or matrix in R?

  • apply()
  • apply.func()
  • func.apply()
  • apply.over()
Mark for review

What does R stand for in R programming?

  • Research
  • Regression
  • Rapid
  • Recursive
Mark for review

Which function is used to calculate the cumulative product in R?

  • cumprod()
  • prod()
  • cumulate()
  • accumulate()
Mark for review

Which function is used to calculate the length of a vector in R?

  • len()
  • length()
  • vec.length()
  • vector.length()
Mark for review

How can you comment out a line in R?

  • //
  • --
  • #
  • /*
Mark for review

In R, what does the function str() do?

  • Sorts elements of a vector
  • Converts factors to characters
  • Displays the structure of an object
  • Searches for a substring in a character vector
Mark for review

Which function is used to calculate the correlation coefficient in R?

  • cor()
  • correlation()
  • cor.coefficient()
  • correlation.coefficient()
Mark for review

What is the output of floor(3.8) in R?

  • 3
  • 4
  • 3.5
  • 4.5
Mark for review

Which function is used to generate a vector of evenly spaced numbers in R?

  • evenly()
  • linspace()
  • seq()
  • range()
Mark for review

In R, what does the paste() function do?

  • Concatenates vectors
  • Splits a string into substrings
  • Replaces elements in a vector
  • Sorts elements in a vector
Mark for review

What does the rev() function do in R?

  • Reverses the order of elements in a vector
  • Removes duplicate elements from a vector
  • Reshapes a vector
  • Computes the reciprocal of elements in a vector
Mark for review

Which function is used to calculate the exponential in R?

  • exp()
  • exponential()
  • exp.calc()
  • calc.exp()
Mark for review

Which function is used to check if a value is finite in R?

  • isfinite()
  • finite()
  • fin()
  • is.finite()
Mark for review

How can you check for missing values in a data frame in R?

  • na.check()
  • is.na()
  • check.na()
  • has.na()
Mark for review

Which function is used to sort a vector in R?

  • order()
  • sort()
  • arrange()
  • sort.vector()
Mark for review

What does the unique() function do in R?

  • Removes duplicate elements from a vector
  • Sorts elements of a vector
  • Adds unique identifiers to elements of a vector
  • Creates a vector of unique elements
Mark for review

blinkerOnline

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • Answered
  • Not Answered
  • Marked for Review