61.1k views
0 votes
Juan created new video game for his coding course. What is one way he can explain his code in everyday language?

A. He can create a separate document to explain his code. B. He can include comments written in the code. C. He can write his notes using actual code. D He cannot include any notes in his code.

User Carexcer
by
5.2k points

2 Answers

2 votes

Answer:

b

Step-by-step explanation:

User Khodayar J
by
5.5k points
2 votes

Answer:

B. He can include comments written in the code

Step-by-step explanation:

One way he can achieve his aim is by including comments to his code.

He can include as many comments as he likes because comments are non executable part of the program. In other words, the translators omit comments during program translation.

Another reason why he should consider using comments is that comments are used by computer programmers to explain lines of code especially the difficult lines.

In fact programmers are advised to include comments in their programs because comments doesn't have to be structured and can be expressed in human language.

In Java, C++, C#, comments are identified by // and /*....*/

In python, comments are identified by #

User Solyd
by
5.0k points