What Will Be The Output Of The Following R Functionp Pre #127
What will be the output of the following R function?</p> <pre><code class="language-rsplus">cat("Everybody", "is", "a", “warrior”,sep="*")</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 Getting Started - Console Input and Evaluation - Quiz No.2.
What will be the output of the following R function?
cat("Everybody", "is", "a", “warrior”,sep="*")
“Everybody", "is", “a” , "warrior”
Everybody*is*a*warrior
Everybody", "is", “a” , "warrior
“Everybody*is*a*warrior”