Algorithm Flowchart
Algorithm Flowchart
Algorithm Flowchart
Pseudo code
Staff Incharge: S.Sasirekha
Computer Programming and
Languages
2. Structural Programming
3. Object-Oriented Programming
Unstructured Programming
• Unstructured style of programming
refers to writing small and simple
programs consisting of only one main
program.
• All the actions such as inputs,
outputs, and processing are done
within one program only.
Structural Programming
• Using structural programming, a program is
broken down into small independent tasks that
are small enough to be understood easily,
without having to understand the whole program
at once.
• Each task has its own functionality and performs
a specific part of the actual processing.
• These tasks are developed independently, and
each task can carry out the specified task on its
own, without the help of any other task.
• When these tasks are completed, they are
combined together to solve the problem.
Object-Oriented Programming
• Object-oriented programming is a
style of computer programming,
which promotes building of
independent pieces of code that
interact with each other.
• It allows pieces of programming code
to be reused and interchanged
between programs.