MCQs R Basics Quiz 26

The post is about the “MCQs R Basics Quiz” which will help you check your ability to execute some basic or R Language, RStudio, Jupyter Notebook, and Google Colab. This quiz will help the learner to understand some basic concepts related to R Programming Language. This quiz may also improve your computational understanding, and it will also help you to learn and practice the MCQs R Basics Quiz now.

Online MCQs R Basics Quiz with Answers

Online MCQs R Basics Quiz Questions with Answers

1. How many working directories can you have set simultaneously in an R session?

 
 
 
 

2. You want to access the “Date” column of a data frame called sales_data so you can operate on it. What is the correct way to refer to this column?

 
 
 
 

3. Which of the following most accurately describes R?

 
 
 
 

4. Will R return a value of true or false if you evaluate this expression? "apple"=="appla"

 
 
 
 

5. Which of these is the easiest way to save R code that you write for future use?

 
 
 
 

6. Is it easier to import rectangular or non-rectangular data into R?

 
 

7. After you finish the trial period, R will cost hundreds of dollars to use, depending on the license you purchase.

 
 
 

8. What value will this return?

subtract_and_divide <- function(x, y){
x - y
x / y
}
subtract_and_divide(4, 8)

 
 
 
 

9. What does this line of code do in R? a <- 2+2

 
 
 
 

10. What will happen if you try to run this line of code in R? 10variable1 <- c(5,19,10,"apple")

 
 
 
 

11. Which of the following correctly describes the relationship between RStudio and R?

 
 
 
 

12. What does the class() function do in R?

 
 
 
 

13. What is the easiest way to export a figure you create in RStudio?

 
 
 

14. What happens if you run this code? data.frame(alpha,beta)

 
 
 
 

15. Are cheat sheets trustworthy guides for how to use R and RStudio?

 
 
 

16. Why is it helpful to be able to use functions like rnorm, rpois, rbinom, and runif?

 
 
 
 

17. In R, create the following object: test_vector <- c("dog","fish","pig","parrot").
After you create the object, what do you get if you then run test_vector[4]?

 
 
 
 

18. You need to carefully learn and understand all the details about how R works before you start coding.

 
 
 

19. What part of the data frame “states” does this code call? states[15,2]

 
 
 

20. Say you have a data frame named “inventory” with 3 rows and two columns, created like this:
home <- c("computer", "calculator", "scanner")
office <- c("paper", "pens", "pencils")
inventory <- data.frame(home, office)
What would happen if you ran this code?
inventory$annex <- c("printer", "stapler")

 
 
 

Online MCQs R Basics Quiz with Answers

  • Which of the following most accurately describes R?
  • Which of the following correctly describes the relationship between RStudio and R?
  • Which of these is the easiest way to save R code that you write for future use?
  • After you finish the trial period, R will cost hundreds of dollars to use, depending on the license you purchase.
  • You need to carefully learn and understand all the details about how R works before you start coding.
  • Are cheat sheets trustworthy guides for how to use R and RStudio?
  • What does this line of code do in R? a <- 2+2
  • Will R return a value of true or false if you evaluate this expression? “apple”==”appla”
  • What will happen if you try to run this line of code in R? 10variable1 <- c(5, 19, 10, “apple”)
  • In R, create the following object: test_vector <- c(“dog”, “fish”, “pig”, “parrot”). After you create the object, what do you get if you then run test_vector[4]?
  • What value will this return?
    subtract_and_divide <- function(x, y){
    x – y
    x / y
    }
    subtract_and_divide(4, 8)
  • What happens if you run this code? data.frame(alpha,beta)
  • What part of the data frame “states” does this code call? states[15,2]
  • Say you have a data frame named “inventory” with 3 rows and two columns, created like this:
    home <- c(“computer”, “calculator”, “scanner”)
    office <- c(“paper”, “pens”, “pencils”)
    inventory <- data.frame(home, office)
    What would happen if you ran this code? inventory$annex <- c(“printer”, “stapler”)
  • How many working directories can you have set simultaneously in an R session?
  • Is it easier to import rectangular or non-rectangular data into R?
  • You want to access the “Date” column of a data frame called sales_data so you can operate on it. What is the correct way to refer to this column?
  • What does the class() function do in R?
  • Why is it helpful to be able to use functions like rnorm, rpois, rbinom, and runif?
  • What is the easiest way to export a figure you create in RStudio?

MCQs Deep Learning Quiz

Python Data Structure Quiz 8

The post is about an Online Python Data Structure Quiz with Answers. There are 20 multiple-choice questions covering list, set, dictionary, tuple, and operations on these data structures. Let us start with the Python Data Structure Quiz now.

Online Python Data Structure Quiz with Answers
Please go to Python Data Structure Quiz 8 to view the test

Online Python Data Structure Quiz with Answers

  • Which of the following is a standard tool or language that can be used to clean and split data into load files?
  • After operating A.append([2,3,4,5]), what will be the length of the list A = [1]?
  • What are the keys of the following dictionary? {“a”:1,”b”:2}
  • Consider the following Python Dictionary: Dict={“A”:1,”B”:”2″,”C”:[3,3,3],”D”:(4,4,4),’E’:5,’F’:6} What will be the outcome of the following operation? Dict[“D”]
  • Which of the following is the correct syntax to extract the keys of a dictionary as a list?
  • Consider the following set: {“A”, “A”}, what will the result be when you create the set?
  • What method do you use to add an element to a set?
  • What is the result of the following operation? {‘a’,’b’} &{‘a’}
  • Examine the tuple A=((11,12),[21,22]), which involves a tuple and list. What is the outcome of the following operation A[1]?
  • Consider the tuple A=((11,12),[21,22]), which contains a tuple and list. What is the result of the following operation A[0][1]?
  • Consider the tuple A=((1),[2,3],[4]), that contains a tuple and list. What is the result of the following operation A[2]?
  • Examine the tuple A=((1),[2,3],[4]), that involves a tuple and list. What is the outcome of the following operation A[2][0]?
  • The method append does the following:
  • If L = [‘c’, ‘d’], then the output of the statement L.append([‘a’, ‘b’]) is:
  • Consider the following list: A=[“hard rock”,10,1.2] What will list A contain after the following command is run? del(A[1])
  • If A is a list, what does the following syntax do? B=A[:]
  • What is the result of the following? len((“disco”,10))
  • The variable release_year_dict is a Python dictionary. What is the outcome of applying the following method? release_year_dict.values()
  • Consider the set: V={‘A’,’B’}, what is the result of V.add(‘C’)?
  • What does the following function return? len([sum([1,1,1])])

Statistics and Data Analysis

Python Basics MCQs 7

The post is about Python Basics MCQs with Answers. There are 20 multiple-choice questions covering topics related to the basics of Python, data types, strings, tuples, lists, and different operations. Let us start with the Online Python Basics MCQs with Answers.

Online Python Basics MCQs with Answers
Please go to Python Basics MCQs 7 to view the test

Online Python Basics MCQs with Answers

  • What is the data type of the entity 43?
  • What is the result of the following: int(3.99)?
  • What is the result of the operation: 11//2
  • What is the value of x after the following is run: x=4 x=x/2
  • Which line of code will act as required for implementing the following equation? $y =2x^2 − 3$
  • What is the output of the following code segment? type(int(12.3))
  • What is the output of the following code segment? int(False)
  • In Python, what is the output of the following operation? ‘5’+’6′
  • What is the output of the following? ‘hello’.upper()
  • What is the output of the following? str(1+1)
  • What is the output of the following? “ABC”.replace(“AB”, “ab”)
  • In Python 3, what data type does variable x hold after the operation: x = 1/1?
  • What data type does 3.12323 represent?
  • For the string “Fun Python” stored in a variable $x$, what will be the output of x[0:5]?
  • What data type is represented by “7.1”?
  • Consider the following tuple: say_what=(‘say’,’what’,’you’,’will’)What is the result of the following? say_what[-1]
  • Consider the following tuple A=(1,2,3,4,5). What is the outcome of the following? A[1:4]
  • Consider the following list B=[1,2,[3,’a’],[4,’b’]].  What is the result of B[3][1]?
  • What is the outcome of the following operation? [1,2,3] + [1,1,1]
  • What is the outcome of the following? 1=2

Big Data MCQs Quiz