So I came across this line while studying abstraction in Java: ABSTRACT CLASSES can also contain implemented methods ( aka regular methods) whereas an INTERFACE contains ONLY abstract methods ( methods that are not implemented yet).
But if "abstract" literally means "no body", then how is it that the implementation of regular methods can be given in the abstract classes?