74.3k views
1 vote
Which statement about well-formatted code is true?

1.Well-formatted code is consistently aligned to the right margin to make it more readable.
2.Well-formatted code has no blank lines that could confuse the person reading it. 3.Well-formatted code is broken into meaningful segments to make it easier to understand.
4.Well-formatted code uses highlighting to feature important statements.

User McHerbie
by
5.3k points

2 Answers

6 votes

Answer:

Number 3 is right

Step-by-step explanation:

User Kloffy
by
6.5k points
1 vote

Answer:

3.Well-formatted code is broken into meaningful segments to make it easier to understand.

Step-by-step explanation:

Code readability is a subject that is learnt by most developers. Well-formatted code will not speed up the execution of your code, but will most definitely simplify finding errors. Programmers should make it a habit of having standard and clear code for easier readability.

User Mike Ratcliffe
by
5.5k points