Interfaces Flashcards
1
Q
Interface methods are by default
A
Abstract and public
2
Q
Interface attributes are by default
A
Public, static and final
3
Q
An interface cannot contain
A
A constructor (as it cannot be used to create objects)
4
Q
Like abstract classes, interfaces cannot be used to
A
Create objects
5
Q
Interface methods do not have a
A
Body