What Will Be The Output Of The Following R Codep Pre Langrsplus #39
What will be the output of the following R code?</p> <pre><code class="language-rsplus">y <- c(TRUE, 2)</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs110 R Language. It can also be found in gs gs110 History, Overview - Overview of R - Quiz No.2.
What will be the output of the following R code?
y <- c(TRUE, 2)
[1] “TRUE” “2”
[1] “TRUE” 2
[1] “0” “2”
[1] 1 2