154k views
3 votes
Select all qualities of a very well formatted answer: 1. code is nicely decomposed 2. Response uses markdown and spacing where needed 3. code is as long as possible 4. every line is commeented in-line 5. using double hasing

User Hyder
by
7.4k points

2 Answers

5 votes

Final answer:

A well-formatted answer should have nicely decomposed code, use markdown and spacing where needed, and be organized in a way that makes it easy to read and understand. Double hashing is not directly related to formatting.

Step-by-step explanation:

Code is nicely decomposed: Well-formatted answers should have code that is organized into logical functions or modules, making it easier to read and understand. This can be achieved by breaking down complex tasks into smaller, manageable parts.

Response uses markdown and spacing where needed: Markdown and proper spacing can make an answer more visually appealing and easier to follow. For example, using headers (

Using double hashing: While double hashing can be useful in certain scenarios, it is not necessarily a quality of a well-formatted answer. It is more related to algorithm design and optimization.

User Sundus
by
7.2k points
1 vote

Final answer:

Qualities of a very well formatted coding answer include nicely decomposed code, the use of markdown and spacing for readability, and a balance in commenting rather than striving for length or over-commenting.

Step-by-step explanation:

The qualities of a very well formatted answer in the context of coding assignments include several important factors. First, a well-formatted answer should have code that is nicely decomposed, meaning it is broken down into understandable and manageable parts or functions. This makes the code easier to read and maintain. Secondly, the use of markdown and spacing can greatly improve the readability of the response, as it helps to visually separate different sections of code and explanation. While some in-line comments can be useful, it's essential to find a balance and not over-comment, as too many comments can clutter the code and make it hard to follow.



Regarding the length of the code, it's a misconception that longer code is better. In fact, the goal should be to write concise and efficient code that accomplishes the task without unnecessary complexity, hence code is as long as possible is not a desirable quality. Lastly, double hasing, or proper use of comments and documentation standards, can contribute to the clarity of the code, though the term 'double hasing' is not a standard terminology in programming and seems out of context in this question.

User Kodak
by
7.1k points