Practice Quiz Week 1
Practice Quiz 12 min
1.
Which of the following are examples of predictive analysis? Select two answers.
This is an example of predictive analysis.
This is an example of predictive analysis.
2.
Which of the following statements about numeric and integer values are true? Select three values.
An integer can always be converted to a numeric value.
A numeric to integer conversions is allowed but note that precision is reduced.
3.
What is the result of the R expression 4 + 3 * 25?
This answer correctly interprets the order of operations for expressions in R.
4.
Which R function saves a workspace to a .RData file?
The save.image() function saves a workspace to a .RData file.
5.
In RStudio, which of the following statements about writing code in the File Editor and the Console are true? Select two answers.
Use the Console for trying out R commands and seeing the results immediately. Use the File Editor for writing/editing script files and then executing them in batch mode to see the results.
Use the Console for trying out R commands and seeing the results immediately. Use the File Editor for writing/editing script files and then executing them in batch mode to see the results.
6.
Complete the statement: A Jupyter Notebook is made up of a series of _______________ that you can use to write, run, and interact with your code.
A cell in a Jupyter Notebook is a multiline text input field where you can enter many types of text.