Question: What will code output? interface Movable { String move ( ) ; } interface Swimmable { String swim ( ) ; } class Duck implements

What will code output? interface Movable {
String move();
}
interface Swimmable {
String swim();
}
class Duck implements Movable, Swimmable {
public String move(){
return "Duck moves";
}
public String swim(){
return "Duck swims";
}
}
public class Test {
public static void main(String[] args){
Duck d = new Duck();
System.out.println(d.move());
System.out.println(d.swim());
}
}
What will code output? interface Movable { String

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!