54.7k views
3 votes
Which statement about comments is false? Select one: a. Lengthy comments can cause poor execution-time performance. b. Comments do not cause any machine language object code to be generated. c. Comments may begin and end with /* and */, respectively. d. Programmers insert comments to document programs and improve program readability.

User Boky
by
4.7k points

1 Answer

3 votes

Answer:

The answer is "Option a".

Step-by-step explanation:

In programming, the Comment is also known as the description of the source code or the program, which increases the readability of the programmer. It aims to facilitate understanding of it's code to humans, and when we this code the compilers and interpreters typically avoid it, and correct choices can be defined as follows:

  • In choice b, There is no use of comments in the compilation.
  • In choice c, the multiple line comment starts with starts and ends with /* and */.
  • In choice d, it increases the program readability.
User Ali Akber
by
5.1k points