Programming Concepts 001 Flashcards
1
Q
What are the three types of Problem Solving?
A
The three types are top-down, bottom-up and modularization.
2
Q
What is the Top-Down method?
A
This is a method that starts off with a big picture then you break it up into to small pieces. This is also called Decomposition.
3
Q
What is Modularization?
A
This is when you split problems up with modules. This makes it so it can be used again without needing to be rewritten.
4
Q
What is the Bottom-Up method?
A
This is when you start with smaller problems then build them up to have one big amalgamation. This is like having ingredients and making a disk with said ingredients. This helps with showing what you can do with what you know.