Ghulam Abbas
Developer
skill's
-
HTML100%
-
CSS100%
-
JavaScript80%
-
PHP8%
-
Laravel95%
-
React70%
Ghulam Abbas
Object-Oriented Programming (OOP) is a fundamental paradigm in software development that organizes software design around objects. These objects are instances of classes, which can represent real-world entities and provide a modular approach to building programs. OOP helps manage complexity, encourages reusability, and makes software easier to maintain.
Work Experience:
-
2020-2021
Junior Developer
Inheritance is a fundamental concept in object-oriented programming, that allows one class to inherit the properties and methods of another class. In simple words, inheritance is a concept in programming,
-
2022-Current
Senior Developer
you have a class called Car with a method start(). If you create a Tesla class and use inheritance, the Tesla class will automatically get the start() method from the Car class. This way, you do not have to rewrite the method in the Tesla classu2014you just inherit it.
Education:
-
2011-2013
Metric
A class is a blueprint for creating objects. It defines the properties (attributes) and behaviors (methods) that the objects created from the class will have.
-
2013-2015
FA
In this example, Car is a class that has attributes brand, model, and year. The start() method represents the behavior of the car.nn