Which modifier can be applied to an interface method?
B.
Interface methods are implicitly public.
Option A and C are incorrect.
Interface methods can also not be declared final, whether they are static, default, or abstract methods, making Option D incorrect.
Option B is the correct answer because an interface method can be declared static.