Computer Applications
Explain the statement, "a well-documented code is as important as the correctly working code".
Values & Data Types Java
66 Likes
Answer
Writing fully commented code is a good programming style. The primary purpose of comments is to document the code so that even a layman can understand the purpose of the written code. Hence, a well-documented code is as important as the correctly working code.
Answered By
36 Likes
Related Questions
Provide the declaration for two variables called xCoordinate and yCoordinate. Both variables are of type int and both are to be initialised to zero in the declaration.
Write a Java assignment statement that will set the value of the variable interestAmount to the value of the variable balanceAmount multiplied by the value of the variable rate. The variables are of type double.
How can you write single line comments in Java?
Write a Java constant declaration that gives the name TAX_RATE to the value 15%.