Saved Bookmarks
| 1. |
Which of the following command is used to print an object “x” in R?(a) printf(x)(b) print(x)(c) printx(d) print[x] |
|
Answer» The correct answer is (b) print(x) The explanation: print(x) command is used to print. Print(x) is the basic syntax for R. We can directly print the variable without print function also. The functions in R are helpful to the user to simplify the problem. |
|