IBM I five major features 2 object-based designobject-based Design
The ibm I is a fully object-based system. this means that everything within the system-programs, data files, message queues-is an object. each object has two inseparable parts: a descriptive part, which defines the valid ways of using that data, and a data part, which serves as the functional aspect of the object. for example, if an object is defined as a program, its descriptive part states that the data part will be treated as executable, read-only, compiled code. the only operations allowed on this object are those that make sense for a program. for example, you can write into the middle of a data file, but you can't write into the middle of compiled code; the system won't let it happen. thus, IBM I objects 'two-part design ensures data integrity for all objects in the system.
Object-based design has important security implications. for example, one mechanic by which Computer Viruses enter systems is by masquerading as data. then, after they're inside, they try to become executable code and wreak havoc. such a change of characteristics isn't possible on the IBM I; if the system lets a package enter the system as data, that package must retain the characteristics of data forever. it can't change its mind and become executable code.