Assignment title: Information
One of the most important practical uses of prime numbers is in cryptography – if you have ever done any online banking or purchased something online using a credit card then you will have relied heavily on the use of prime numbers in keeping your transaction secure1. One of the oldest means of extracting prime numbers is the Sieve of Eratosthenes and this what we shall be using in this assignment. You are required to write a Java application that finds all the prime numbers2 in a given range. We shall only consider the domain of positive integers: 1,2,3,4 and so on. As this can be a long task, design your program so that it uses threads