ICSE Class 9 Computer Applications
Question 3 of 17
Introduction to Object Oriented Programming Concepts — Question 3
Back to all questions 3
Question Question 3
What are the characteristics of procedural programming?
The characteristics of procedural programming are:
- Procedural programming follows a top-down approach.
- The program is divided into blocks of codes called functions, where each function performs a specific task.
- Procedural programs model real-world processes as 'procedures' operating on 'data'.
- The data and functions are detached from each other.
- The data moves freely in a program.
- It is easy to follow the logic of a program.
- A function can access other function's data by calling that function.