KnowledgeBoat Logo

Computer Science

A program having multiple functions is considered better designed than a program without any functions. Why ?

Python Functions

6 Likes

Answer

A program having multiple functions is considered better designed than a program without any functions because

  1. It makes program handling easier as only a small part of the program is dealt with at a time, thereby avoiding ambiguity.
  2. It reduces program size.
  3. Functions make a program more readable and understandable to a programmer thereby making program management much easier.

Answered By

5 Likes


Related Questions