Briefing Zend Knowledge

Which of the following code snippets is correct?

Which of the following code snippets is correct? (Choose 2)
<code>
a)
interfaceDrawable {
abstractfunction draw();
}
b)
interfacePoint {
functiongetX();
functiongetY();
}
c)
interfaceLine extends Point {
functiongetX2();
functiongetY2();
}
d)
interfaceCircle implements Point {
functiongetRadius();
}
</code>

A.
a)

B.
b)

C.
c)

D.
d)