- Notifications
You must be signed in to change notification settings - Fork0
andresWeitzel/Job_interview_exercises_Java_8
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Job interview exercises with java 8 applying Api Stream, Java Collection Framework, Lambdas Expression, others.
Project execution🔝
See
Using ArrayList Method🔝
Write a Java program to create a list of arrays, add some values (of type strings) and print the collection.
See solution
importjava.util.*;publicclassRandom {publicstaticvoidmain(String[]args) {List<String>list =newArrayList<String>();list.add("First string");list.add("Second string");list.add("Third string");System.out.println(list);}}
[Firststring,Secondstring,Thirdstring]
About
Job interview exercises with java 8 applying Api Stream, Java Collection Framework, Lambdas Expression, others.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.