Home - Introduction - Analyze problem - Describe Data & Algorithm - Implement program - Test & Debug
INTRODUCTION :
Computational Problem Solving does not involve only computer programming. Programming is one of the part of problem solving.
It is a process and it consists of 4 steps.
# Analysis
# Design
# Implementation
# Testing
ANALYZE PROBLEM :
# Clearly understand the problem.
# Know what constitutes a soln.
DESCRIBE DATA & ALGORITHM :
# Determine what type of data is needed.
# Determine how data is to be structured.
# Find and /or design appropriate algorithm.
IMPLEMENTED PROGRAM :
# Represent data within programming languages.
# Implement algorithm in programming languages.
TEST AND DEBUG :
# Test the program on a selected set of problem instances.
# Correct and understand the causes of any errors Found.

0 Comments