1.
What symbol or set of symbols will begin a comment in C++ when the comment extends only to the end of the line?
- <!-
- No, <!- is used in html to begin comments, but it is not used in C++.
- ⋕
- No, ⋕ is used in Python for comments, but in C++ it is used for compiler directives such as loading a code library.
- //
- Correct!
- @
- No, @ is not used in C++.
- none of the above
- One of the above is correct.