Concepts_Learned Flashcards

1
Q

Interface

A

https://en.wikipedia.org/wiki/Interface_(Java)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Interface in Class

A

The syntax for implementing an interface uses this formula:

… implements InterfaceName[, another interface, another, …] …

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What happens if a class implements an interface and does not implement all its methods?

A

It must be marked as abstract.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does Interfaces affect Callbacks in Java?

A

Java has no Callbacks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly