oops
EXPT. NO. 1 WRITE A PROGRAM TO DISPLAY INFORMATION OF STUDENT OBJECTS Objects are the basic run-time entities in an object-oriented system. They may represent a person, a place, a bank account, a table of data or any item that the program must handle. The fundamental idea behind object oriented approach is to combine both data and function into a single unit and these units are called objects. The term objects means a combination of data and program that represent some real word entity. For example: consider an example named Amit; Amit is 25 years old and his salary is 2500. The Amit may be represented in a computer program as an object. The data part of the object would be (name: Amit, age: 25, salary: 2500). Class : Class is a group of objects that share common properties and relationships .In C++,data type that contains member variables and member functions that operates on the variables. 2 A class is defined with the keyword class. It allows the data to be hidden, if necessary...