What type of methods an interface contain by default?

a) abstract
b) static
c) final
d) private

1 thought on “ What type of methods an interface contain by default?”

  1. a
    Explanation: By default, interface contains abstract methods. The abstract methods need to be implemented by concrete classes.

Leave a Comment