Create a classes with overloaded methods to represent a Prime Generator.
- Create a method to determine if a number is a prime, and four overloaded methods to generate primes.
- Method without a parameter should generate and display a random prime, method with one integer parameter n will generate and display n random primes, method with two integer parameters (a, b; a<=b) will generate all primes in the range(a, b), and method with three integer parameters(c, a, b; c>=1, a<=b) will generate and display the first c primes(if exists) in the range(a, b).
- Complete all the incomplete methods from the class. And do not alter the Program class.