Introduction to Problem Solving
Chapter 4 INTRODUCTION TO PROBLEM SOLVLING Problem solving, in the context of developing programs, refers to analyzing a problem with the intention of deriving a solution for the problem Problem Solving Cycle: The problem-solving cycle is a structured, iterative, 4-step process used to: 1. identify and analyze the problem, 2. Find its solution and Develop algorithm of the solution 3. Code the solution in a programming language. 4. Test and Debut the coded solution. And finally implement and maintain it. Problem Solving Using Decomposition Decomposing is a process of breaking down a big or complex problem into a set of smaller sub-processes to allow us to describe, understand, or execute the problem better. Decomposition involves: · Dividin...