principle of programming in information technology

VikashKumar256395 7 views 9 slides Jun 10, 2024
Slide 1
Slide 1 of 9
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9

About This Presentation

principle of programming in information technology


Slide Content

NETAJI SUBHAS UNiVERsITY BCA (2022-2025) principal of programming

APPROACHES

Top down approach/ modular approach I n this methodology we break down a problem into a small Problems and then these smaller problems are coded independently. Then we integrate that system and test it. Focus is on dividing your bigger problems into managable smaller problems. Each independent component is called as module.

In bottom up approach, system design starts with the lowest level of components. Programs are divided into object, which are then interconnected to get higher level component. This process continues till hierarchy of all system component is generated. In this approach security of data is provided. In this approach the addition of new data and function can be easily added whenever it is required. BOTTOM UP APPROACH

T op d own a pproach b ottom u p a pproach Cart Checkout Shop Search Categories Products Cart Checkout Shop Search Categories Products

Difference between bottom up and top down approaches Divide a problem into a smaller unit and then solve. A well established communication is not required. Starts from solving the small modules and adding up them up to together. Communication among step is mandatory mandatory . A) B) a) b) TOP DOWN BOTTOM UP

Mainly used by structural programming languages like C, FORTRAN. Individual modules are thoroughly analyzed. Mainly used by object oriented programming languages like C++, Java. Works on the concept of data hiding and encapsulation. C) D) c) d)

THANK YOU