
Programming Paradigms 5
(1) Huge programs are divided into smaller programs known as functions. These functions
can call one another. Hence security is not provided.
(2) No importance is given to security of data and importance is laid on doing things.
(3) Data passes globally from function to function.
(4) Most function accesses global data.
1.6 PROGRAMMING PARADIGMS
(1) Monolithic Programming:
(A) In these types of programming languages,
the program is written with a single function.
A program is not divided into parts; hence it
is named as monolithic programming. It is
also called single thread execution.
(B) When the program size ...