Advertisements
Advertisements
प्रश्न
Write any five benefits of using modular programming.
उत्तर
The Benefits of using modular programming:
- Less code to be written.
- A single procedure can be developed for reuse, eliminating the need to retype the code many times.
- Programs can be designed more easily because a small team deals with only a small part of the entire code.
- Modular programming allows many programmers to collaborate on the same application.
- The code is stored across multiple files.
- Code is short, simple, and easy to understand.
- Errors can easily be identified, as they are localized to a subroutine or function.
- The same code can be used in many applications.
- The scoping of variables can easily be controlled.
APPEARS IN
संबंधित प्रश्न
The process of subdividing a computer program into separate sub-programs is called ______
Which of the following members of a class can be handled only from within the class?
Which members are accessible from outside the class?
The members that are accessible from within the class and are also available to its subclasses is called ______
How Python represents the private and protected Access specifiers?
Why access control is required?
Write any Five Characteristics of Modules.
Observe the following program carefully, and identify the error:
from math import sqrt,ceil
def calc():
print cos(0)
calc() #function call
Write a program that contains user-defined functions to calculate area, perimeter, or surface area whichever is applicable for various shapes like square, rectangle, triangle, circle, and cylinder. The user-defined functions should accept the values for calculation as parameters and the calculated value should be returned. Import the module and use the appropriate functions.