- 1
help
Drag and drop from the options below to create a LinkedList, add "Hey", and print it. ____<String> list = new LinkedList____ (); list.add(____ ); System.out.println(list.get(____ )); 1 0 LinkedList ArrayList <String> "Hey" "Bye"
3 Answers
+ 36
1.LinkedList
2. <String>
3. "Hey"
4. 0
+ 18
u must try to answer them by yourself by reading the lesson âș
0
Here is the Answer :
LinkedList
String
Hey
0