Question: Question 5 For this problem, use the Speaker interface, from the Interfaces Example. Recall that the Speaker interface requires any class implementing it to supply
Question 5
For this problem, use the Speaker interface, from the Interfaces Example. Recall that the Speaker interface requires any class implementing it to supply a speak method. Suppose that a HashMap collection is defined as:
HashMap
Question 5 options:
| A | for(Speaker s : col) { col.speak( )); } |
| B | for(Speaker s : col) { s.speak( ); } |
| C | for(Speaker s : col.values( )) { s.speak( ); } |
| D | for(Speaker s : col.values( )) { col.speak( ); } |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
