Respuesta :
Answer:
#
Explanation:
A more common way to plan a program is with pseudocode, an outline composed of comments. Comments are indicated by a pound sign (#) at the beginning of the line.
Depending on the programming language, there are several ways we can comments our statements or codes that are not needed in our programmes
In Kotlin and Java Languages we can us the double slash "//" symbol to express single line comment
Example
//This is a comments
We can also us the "/***/" to express multi line comments
Example
/**This is a comment
also*/
Hence we have the
- Inline Comments
- Multiline Comments
For more information on comments in programming language kindly visit
https://brainly.com/question/15068446