What will be the correct option of the following Java code snippet?
interface ICust {}class RegularCustomer implements ICust {}class OneTimeCustomer implements ICust {}

What will be the correct option of the following Java code snippet?

interface ICust {}class RegularCustomer implements ICust {}class OneTimeCustomer implements ICust {}
Correct Answer ICust can be replaced with RegularCustomer

Related Questions