Assignment Instructions
Instructions:
* Make sure you go to review  previous chapter lessons for more guidance. 
Class, create an array of object displaying the data of 3 employee. Statement 1 is creating an array of Employee Emp to store the records of 3 employees.
Save the code in jGRASP, then save it in c:myjava and run it.
/*******************

  Name:
  Date:
 Notes:    

*******************/
//Employee.java
    import java.util.Scanner;
class Employee
                {
                                datatype var1;
                                datatype var2;
                                – – – – – – – – – –
                                datatype varN;
                  void GetData()           // Defining GetData()
                 {
                    Scanner sc = new Scanner(System.in);
                                Add content
                  }
                  void PutData()           // Defining PutData()
                 {
                      System.out.print(…
                }
                    public static void main(String args[])
        {
            Employee[] Emp = new Employee[3];
            int i;
            for(i=0;i<3;i++) // Allocating memory to each object             for(i=0;i<3;i++)             {                 System.out.print("… getdata             }             System.out.print(...             For statement               putdata         }     } The output should contain the following: Output:                 Enter details of 1 Employee                 Enter Employee Id : 1001                 Enter Employee Name : Davis                 Enter Employee Age : 40                 Enter Employee Salary : 65000                 Enter details of 2 Employee                 Enter Employee Id : 1002                 Enter Employee Name : McKnight                 Enter Employee Age : 35                 Enter Employee Salary : 41000                 Enter details of 3 Employee                 Enter Employee Id : 1003                 Enter Employee Name : Daniels                 Enter Employee Age : 28                 Enter Employee Salary : 27000                 Details of Employees                 1001       Davis      40      65000                 1002       McKnight      35      41000                 1003       Daniels      28      27000 Make sure that you include all source codes and the compiled codes into Final_firstname_lastname.zip. You must leave me a note in the Submitted Text area on how to compile and run your code. Requirements Points Available Assignment details in a comment block (flowerbox) 10 Core application as described in the assignment requirement 60 Print function used to correctly to  print the solution to the assignment 20 Code is commented and application name is submitted  as requested 10 Total 100