What do you understand by Object Cloning and how do you achieve it in Java?
Answer»
It is the process of CREATING an exact copy of any object. In ORDER to support this, a java class has to implement the Cloneable interface of java.lang package and override the clone() method PROVIDED by the Object class the syntax of which is: