Object Oriented Programming (OOPs)
© examsiri.com
Question : 57 of 72
Marks:
+1,
-0
Given:
Which two are true?
1. public class Team extends java.util.LinkedList {
2.   public void addPlayer(Player p) {
3.    add(p);
4.   }
5.   public void compete(Team opponent) { /* more code here */ }
6. }
7. class Player { /* more code here */ }Which two are true?
Go to Question: