Difference between Top down and bottom up approaches for a
given project ?
Answer Posted / reejusri
These are two design approaches, which can be explained as:
You can imagine a tree like structure , in which when you
are following top-down appoarch you move from root node to
leaf node and when you follow bottom-up apprach you follow
leaf node to root node.
Top-down approach:
In this an overview of the system is first formulated,
specifying but not detailing any first-level subsystems.
Each subsystem is then refined in yet greater detail,
sometimes in many additional subsystem levels, until the
entire specification is reduced to base elements.
Bottom-up approach:
In this approach the individual base elements of the system
are first specified in great detail. These elements are
then linked together to form larger subsystems, which then
in turn are linked, sometimes in many levels, until a
complete top-level system is formed.
| Is This Answer Correct ? | 248 Yes | 62 No |
Post New Answer View All Answers
What is the history of c++?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
Is c++ a float?
Is overriding possible in c++?
List down the guideline that should be followed while using friend function.
What is meant by the term name mangling in c++?
What are the benefits of c++?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
Explain selection sorting. Also write an example.
Explain the use of vtable.
What are pointers used for c++?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
What is cin clear () in c++?
How do you establish a has-a relationship?
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?