Can I implement abstract methods in an abstract base class A in java?
If the answer is yes and there is an implemented abstract method in a base class A and there is a derived class B from A (B is not abstract). Does B still has to implement that base abstract method?
If I understand your question correctly, Yes.
In this example, ClassB will compile. It will use it’s own implementation of methodB(), and ClassA’s implementation of methodA(). You could also override methodA() in ClassB if desired.