Java SE 8 Programmer II (1Z0-809)
© examsiri.com
Question : 1 of 8
Marks:
+1,
-0
Given:
public abstract class Customer {
private String name;
public Customer (String name) {
this.name = name;
}
public String getName() { return name; }
public abstract void buy();
}
Which two statements are true about Customer?
Go to Question: