Multiple choice technology programming languages

Comments can be nested.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Most programming languages do not allow comment nesting - once a comment delimiter starts, it cannot contain another comment delimiter of the same type. For example, /* /* */ */ would end at the first */ encountered. Only certain specialized formats support nesting. This question likely refers to Java/C/C++ style comments.