14 of 65A developer must create a DrawList class that provides capabilities defined in the Sortable and Drawable interfaces. public interface Sortable { void sort (); } public interface Drawable { void draw (); } Which is the correct implementation? public class DrawList implements Sortable, Drawable { public void sort () { /*implementation*/ } public void draw (){ /*implementation*/ } } public class DrawList extends Sortable, Drawable { public void sort () { /*implementation*/ } public void draw() { /*implementation*/ } } public class DrawList extends Sortable, extends Drawable { public void sort() { /*implementation*/ } public void draw() { /*implementation*/ } } public class DrawList implements Sortable, implements Drawable { public void sort () { /*implementation */ } public void draw() { /*implementation*/ } } View other questions here: Salesforce Certified Platform Developer I (Set 4) Previous Question Next Question Was this helpful? YesNo 0 / 0 #Developer #Salesforce Developer