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 mainString args
Duck d new Duck;
System.out.printlndmove;
System.out.printlndswim;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
