What will be the output of the following R function?
cat("Everybody", "is", "a", “warrior”,sep="*")
cat("Everybody", "is", "a", “warrior”,sep="*")
A. "Everybody", "is", "a" , "warrior"
B. Everybody*is*a*warrior
C. Everybody", "is", "a" , "warrior
D. "Everybody*is*a*warrior"
Answer: Option B
Join The Discussion