Which of the following code snippets is correct? (Choose 2)
interface Drawable {
abstract function draw();
}
interface Point {
function getX();
function getY();
interface Line extends Point {
function getX2();
function getY2();
interface Circle implements Point {
function getRadius();
Submit