Answers for "what is oop and other principles"

5

oop design principles

Below mentioned respectively Pillers of OOP concept 
and Principles of OOP Design (SOLID)

Pillers of OOP concept
1. Abstraction
2. Encapsulation
3. Inheritance
4. Polymorphism

Principles of OOP Design
1. Single Responsibility Principle (SRP)
2. Open-Closed Principle (OCP)
3. Liskov Substitution Principle (LSP)
4. Interface Segregation Principle (ISP)
5. Dependency Inversion Principle (DIP)
Posted by: Guest on August-09-2021
3

what is oop and how it works

Object Oriented programming (OOP) is a programming 
paradigm that relies on the concept of classes and 
objects. It is used to structure a software program into 
simple, reusable pieces of code blueprints (usually called 
classes), which are used to create individual instances of objects.
Posted by: Guest on April-27-2021

Browse Popular Code Answers by Language