Question:Define Object Cloning.
Answer Object cloning method in the programming language for object duplication. In Object Oriented Programming, objects are manipulated through reference variables, and there is no operator for copying an object—the assignment operator duplicates the reference, not the object. The cloning method provides this missing functionality.
+ Report
Define Object Cloning.