0% found this document useful (0 votes)
5 views

Object Oriented Programming Paradigm

The document discusses the object-oriented programming paradigm, highlighting that objects represent real-world entities that interact with each other. It outlines the structure of classes, which serve as templates for creating objects, and identifies the two main components of a class: data members and methods. Additionally, it mentions other programming paradigms such as procedural, functional, and event-driven paradigms.

Uploaded by

mosesdray15
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Object Oriented Programming Paradigm

The document discusses the object-oriented programming paradigm, highlighting that objects represent real-world entities that interact with each other. It outlines the structure of classes, which serve as templates for creating objects, and identifies the two main components of a class: data members and methods. Additionally, it mentions other programming paradigms such as procedural, functional, and event-driven paradigms.

Uploaded by

mosesdray15
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

PROGRAMMING PARADIGM

CMT210: OBJECT ORIENTED PROGRAMMING 1

Object oriented programming paradigm

-Objects interact with each other.

-Objects are real world entities or things (in systems) e.g student, room, lecturer, unit, patient, doctor,
order, appointment…

(-Paradigm- approach, style, methodology

-examples are; 1. Procedural programming paradigm -C++

2. functional paradigm

3.event-driven paradigm-VB.NET

4.object-oriented paradigm -C++, python, java,VB.NET

-Each paradigm has its unique characteristics.)

-class- template that defines structure of objects.

-An object is an instance/copy of a class.

-we start by creating a class then an object.

-There are two main components of a class: 1) data members/properties.

2)operations performed on that data/methods.

You might also like