113k views
3 votes
What is the advantage of breaking your application’s code into several small procedures?

1 Answer

3 votes

Answer: For better code management and modularity

Step-by-step explanation:

An application consist several lines of code so when we break an entire code into several small procedures it becomes easy to maintain and look for errors while debugging. This process also is part of good code writing and hence easy to manage our code during testing and debugging phases of application development.

User Dom
by
4.7k points