Faq 2 1
Faq 2 1
PROGRAMMING CONCEPTS
FAQs
Page - 1
• Generality: Apart from flexibility, the program should also be general. Gen-
erality means that if a program is developed for a particular task, then it
should also be used for all similar tasks of the same domain. For example,
if a program is developed for a particular organization, then it should suit all
the other similar organizations.
• Documentation: Documentation is one of the most important components
of an application development. Even if a program is developed following
the best programming practices, it will be rendered useless if the end user
is not able to fully utilize the functionality of the application. A well-docu-
mented application is also useful for other programmers because even in
the absence of the author, they can understand it.
A single procedure can be developed for reuse, eliminating the need to re-
type 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.
Page - 2