Posts

Showing posts with the label oop

CONCEPT OF OOP

Image
CONCEPT OF OOP IMPORTANT QUETIONS FOR EXAM (GTU,CVM,SP) CHAPTER ONE COMPLETE HERE IS YOUR CVMU SYLLABUS - LINK   BLOG BY JAY SHAH( GMAIL ) OOPs Concepts💆: Class Objects Data Abstraction  Encapsulation Inheritance Polymorphism Dynamic Binding Message Passing 1. Class: A class is a  user-defined data type. It consists of data members and member functions, which can be accessed and used by creating an instance of that class. It represents the set of properties or methods that are common to all objects of one type. A class is like a blueprint for an object.    For Example:  Consider the Class of Cars. There may be many cars with different names and brands but all of them will share some common properties like all of them will have 4 wheels, Speed Limit, Mileage range ,  etc. So here, Car is the class ,  and wheels, speed limits, mileage are their properties. 2. Object:  It is a basic unit of  Object-Oriented  Programming and ...