Problem 1. Implement a generic method, that takes an array list,containing any type, and prints out the elements, similar to theexample. Note, that even though it is possible to just useArrayList or ArrayListto achieve seemingly similar functionality,your method needs to be generic, so that it accepts a parameterlike this: ArrayList inputArrayList. Name your methodprintArray().
In most modern programming languages, it is possible to uselambda functions. Lambda function in this context is a function,that is defined in place where it is used. For instance, it can beused to sort a list, as shown in thisexample(https://dzone.com/articles/using-lambda-expression-sort):Collections.sort(personList, (Person p1, Person p2) ->p1.firstName.compareTo(p2.firstName));
Problem 2. Based