Thursday, October 13, 2011

Creating and Running an Employee Java Application


Creating a Java Application.


You need to create an Employee class that consists of various data members, such as employeeName, employeeAge, employeeSalary, employeeId. The application must initialize the data members to default values when an object of the Employee class is created. In addition, the application must display the data stored in the object.

To solve the above given problem, the things needs to be done.
1. Code the application
2. Compile and execute the application.