I. Implement the PersonalData class with the following UML diagram.
A PersonalData object is created using one of the two constructors. First constructor uses java.util.Date and social security number (SSN) data. Second constructor uses three integers and a long value. DEVAMINI OKU »
(Find Nth Smallest Number) Write a program that finds nth smallest element among 15 integer values created randomly from the range 1-100. The value n will be given by the user (1 through 15). Searching the array must be performed by a method with the following header: DEVAMINI OKU »
(Complex Number) Write a ComplexNumber class that is similar to the RationalNumber. The class contains:
- Private double data fields named as re and im (corresponding to real and imaginary parts, respectively).
- The following methods DEVAMINI OKU »