Question: Using the template below create an array of object in java displaying the data of 3 employee. Statement 1 is creating an array of Employee

Using the template below create an array of object in java displaying the data of 3 employee. Statement 1 is creating an array of Employee Emp to store the records of 3 employees.

/******************* 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

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!