Select Page

AMU Java Programming Object Array & Employee Data Display Exercise

Question Description

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.

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

"Place your order now for a similar assignment and have exceptional work written by our team of experts, guaranteeing you "A" results."

Order Solution Now