Recall & Review
beginner
What does the
paste() function do in R?It joins multiple strings or values together into one string, separating them by a space by default.
Click to reveal answer
beginner
How is
paste0() different from paste()?paste0() joins strings without any separator, while paste() uses a space by default.Click to reveal answer
beginner
What is the default separator in
paste()?The default separator is a single space (
" ").Click to reveal answer
beginner
Write an example of
paste() joining "Hello" and "World".paste("Hello", "World") returns "Hello World".Click to reveal answer
beginner
Write an example of
paste0() joining "Hello" and "World".paste0("Hello", "World") returns "HelloWorld".Click to reveal answer
What is the output of
paste("R", "Language")?✗ Incorrect
paste() joins strings with a space by default, so the output is "R Language".Which function joins strings without any separator?
✗ Incorrect
paste0() joins strings directly without any separator.How do you change the separator in
paste()?✗ Incorrect
The
sep argument sets the separator between strings in paste().What does
paste0("a", "b", "c") return?✗ Incorrect
paste0() joins strings without spaces, so it returns "abc".Which argument in
paste() combines elements of a vector into one string?✗ Incorrect
The
collapse argument combines vector elements into one string separated by the specified string.Explain the difference between
paste() and paste0() in R.Think about how spaces appear in the output.
You got /3 concepts.
How can you join multiple strings with a custom separator using
paste()?Look at the sep argument in paste.
You got /3 concepts.