Question: The following Java class is an example of ____ OODP. public abstract class C implements Cloneable{ public abstract C clone(); } public class C1 extends

The following Java class is an example of ____ OODP.
public abstract class C implements Cloneable{
public abstract C clone();
}
public class C1 extends C {
@Override
public C clone() {
return super.clone();
}
}
public class C2 extends C{
@Override
public C clone() {
return super.clone();
}
}
Bridge
Prototype
Facade
Flyweight
Singleton
Composite

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!