InterviewSolution
Saved Bookmarks
| 1. |
What is the simplest way of creating the vector?(a) C function(b) Create(c) Destroy(d) InvalidThe question was posed to me during a job interview.I want to ask this question from Data Types in portion Nuts and Bolts and Getting Data In and Out of R Programming |
|
Answer» RIGHT option is (a) C FUNCTION To explain: The simplest way to create a vector is through the concatenation function, c. This function BINDS elements TOGETHER, whether they are of character FORM, numeric or logical. |
|