I understand that variables are static since interface cannot be instantiated and interface variables is not specific to object since it is static.
We know that static vaiables or methods cannot be instantiated by object.we have to call them by class name.
I have been digging into interfaces to understand it better.
When class extends interface, variabLes in interface accessible without using interface name. How is it working?
Can anyone explain it further for my understanding?