Multiple choice

How can we improve readability of coding?

  1. By avoiding goto statements

  2. By using meaningful and indicative names of variables and functions

  3. By using modular programming

  4. All of the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Readability is improved by using clear naming conventions, avoiding complex control flow like goto, and utilizing modular programming to break code into manageable pieces.