InterviewSolution
Saved Bookmarks
| 1. |
Which type of comment is not supported in R?(a) Single-line comments(b) Multi-line comments(c) Both Single-line & Multi-line comments(d) Multiple CommentsI had been asked this question during an internship interview.I want to ask this question from Getting Started with R in chapter Sockets of JavaScript |
|
Answer» RIGHT OPTION is (b) Multi-LINE COMMENTS The best EXPLANATION: R supports single-line comments, but not multiline comments. # is used for making a single line comment. |
|