Implement the following programs using streams and lambdas:
- Filter a list of strings based on a specified condition and print the filtered result
- Map a list of integers to their squares and print the result
- Given a list of integers, concurrently find out prime numbers among them using parallel stream and lambda
- Read a CSV file containing students list and filter the students who have grade > 3 and then print the list.