close
The wrapping up of data members and member methods into a single unit is called encapsulation. Encapsulation involves bundling the data (attributes) and methods (functions) that operate on the data into a single unit, which is typically a class in object-oriented programming. This bundling keeps the data and methods close together within the class, promoting modularity and organization.