Informally, data structure (DSTR) is the way in which data in the program is organized and manipulated. The latter happens through various operations which are supported by the data structure. Examples of these operations are making new objects in DSTR, removing existing objects, searching for a particular object, sorting based on some criteria etc. As an example, suppose, we have to create and manipulate a student database. Naive approach to create this database could be to ...