Defining Classes for Objects
Object Oriented Programming (OOP) involves programming using objects. An Object is made from a Class which defines the attributes of the object and the behaviors. Think about it like what is it about or with adjectives (attributes) and what it can do, or verbs, (behaviors). As an example let’s consider a Class called Student. A…