πŸ“Š R Programming
Q. Finally, in . . . . . . . . R version 1.0.0 was released to the public.
  • (A) 2000
  • (B) 2005
  • (C) 2010
  • (D) 2012
πŸ’¬ Discuss
βœ… Correct Answer: (A) 2000
πŸ“Š R Programming
Q. A . . . . . . . . is a variable that holds one value at a time.
  • (A) Scalar variable
  • (B) Duplex
  • (C) High
  • (D) Vector
πŸ’¬ Discuss
βœ… Correct Answer: (A) Scalar variable
πŸ“Š R Programming
Q. Which of the following is not an object of R?
  • (A) calls
  • (B) expressions
  • (C) strings
  • (D) names
πŸ’¬ Discuss
βœ… Correct Answer: (C) strings
πŸ“Š R Programming
Q. Scripts will run on . . . . . . . .
  • (A) Script Editors
  • (B) Console
  • (C) Terminal
  • (D) GCC Compiler
πŸ’¬ Discuss
βœ… Correct Answer: (A) Script Editors
πŸ“Š R Programming
Q. Why is it needed for R studio to update regularly?
  • (A) Bugs
  • (B) More Functions
  • (C) Methods
  • (D) For more packages
πŸ’¬ Discuss
βœ… Correct Answer: (A) Bugs
πŸ“Š R Programming
Q. If commands are stored in an external file, say commands.R in the working directory work, they may be executed at any time in an R session with the command . . . . . . . .
  • (A) source("commands.R")
  • (B) exec("commands.R")
  • (C) execute("commands.R")
  • (D) exect("command.R")
πŸ’¬ Discuss
βœ… Correct Answer: (A) source("commands.R")
πŸ“Š R Programming
Q. Point out the wrong statement?
  • (A) The grammar of the language determines whether an expression is complete or not
  • (B) The <- symbol is the assignment operator in R
  • (C) The ## character indicates a comment
  • (D) R does not support multi-line comments or comment blocks
πŸ’¬ Discuss
βœ… Correct Answer: (C) The ## character indicates a comment
πŸ“Š R Programming
Q. Which of the following will start the R program?
  • (A) $ R
  • (B) > R
  • (C) * R
  • (D) @ R
πŸ’¬ Discuss
βœ… Correct Answer: (A) $ R
πŸ“Š R Programming
Q. What will be the output of the following R function?
nchar()
  • (A) no. of characters
  • (B) first 5 characters
  • (C) last 5 characters
  • (D) Does not exist
πŸ’¬ Discuss
βœ… Correct Answer: (A) no. of characters
πŸ“Š R Programming
Q. What is the meaning of the following R function?
print( sqrt(2) )
  • (A) 1.414314
  • (B) 1.414214
  • (C) Error
  • (D) 14.1414
πŸ’¬ Discuss
βœ… Correct Answer: (B) 1.414214