Problem Solving
Problem Solving is a creative process. it includes following steps.
- Planning
- Analysis
- Design
- Coding
- Testing & Debugging
- Implementation
- Maintenance
Algorithm
The step by step procedure for the solution of a problem is called algorithm
Algorithm that input 3 Numbers , compute there sum and average.
1. INPUT first number into A
2. INPUT second number into B
3. INPUT third number into C
4. Sum = A + B+ C
5. Average = Sum / 3
6. PRINT Sum
7. PRINT Average
9. End
Types of Control Structure
There are three types of control structures.
- Sequential Structure
- Conditional Structure
- Iterative Structure
Flowchart
The graphical representation of an algorithm or solution of a problem is called flowchart.
Programming Languages
Low Level Languages
- Machine Language
- Assembly Language
High Level Language
- FORTRAN
- COBOL
- PASCAL
- C
- LISP
- BASIC
- RPG
- SQL,etc
Programming Techniques
- Structured Programming
- Object Oriented Programming
- Event Driven Programming
- Visual Programming
Language Processors
- Compiler Interpreter
- Assembler
Post a Comment