(Choose 2 answers)
Select the correct combinations of assignments of a variable: (select 2)
interface Printable {}class Shape {}
class Triangle extends Shape implements Printable {}
A. Printable var1 = new Printable();
B. Shape var2 = new Shape();
C. Triangle var3 = new Shape();
D. Printable var4 = new Shape();
E. Printable var5 = new Triangle();
Q: 42