Answer:
You can convert from a class type to any interface type that the class implements.
Step-by-step explanation:
When we talk about class and interface types in Java, the one thing that comes to mind is the conversion from a class type to an interface type. In Java, it is possible to convert from a class type to any interface type of your choice provided one criterion is met, which is that the interface must be implemented by the class.