COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
TRUE
|
|
FALSE
|
|
Either A or B
|
|
None of the above
|
Detailed explanation-1: -OOP naturally tends toward Bottom-Up as you develop your objects, while procedural programming tends toward Top-Down as you start out with one function and slowly add to it.
Detailed explanation-2: -Bottom-Up Model is mainly used by object oriented programming languages like Java, C++ etc. Top-Down Model is followed by structural programming languages like C, Fortran etc. Bottom-Up model is better suited as it ensures minimum data redundancy and focus is on re-usability.
Detailed explanation-3: -Object oriented programming follows the bottom-up approach. Bottom-up approach begins with low level design or development and ends with high level design. In bottom up approach, code is developed for modules and then these modules are integrated with main() function.
Detailed explanation-4: -C programming uses top down approach to solve a problem. Top down approach starts with high-level design and ends with the low-level implementation. In top down approach, we use following approach to solve any problem. 1.