$16.99
1. a simple Java program that demonstrates Immutable objects and Builder pattern concepts
2. Write a simple Java program that creates a collection of objects of type String. Populate the collection with sample data and use an iterator and a while loop to print the contents.
3. Write a simple Java program that creates a Map with keys of type Integer and values of type String. Populate the map with some sample data. Then do the following.
a. Use a foreach loop to go through each <key, value pair of the map (Hint: use the entrySet method of the Map interface)
b. and on iteration of the for loop, print out the current key and value represented by the iteration.