0% found this document useful (0 votes)
79 views10 pages

Employee Management System: Abhaysinhraje Bhonsle Institute of Technology

Download as docx, pdf, or txt
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 10

Maharashtra State Board of Technical Education,

Mumbai

Vidyavardhini Charitable Trust’s


Abhaysinhraje Bhonsle Institute of Technology
Shahunagar - Shendre, Satara.
2020-2021
A PROJECT REPORT ON:

Employee Management System


SUBMITED BY:
1) Kengar Nikhil Birappa
UNDER THE GUIDANCE OF:
Mr. Dhongade .R.
(information technology Dept.)
(2020-2021)
Vidyavardhini Charitable Trust’s
Abhaysinhraje Bhonsle Institute of Technology

Shahunagar - Shendre, Satara.

CERTIFICATE
This is to certify that:

Roll no: 11

Roll No: 19

Diploma in it Engineering, has satisfactorily completed the project work under


mini project report on, Employee management system under my guidance and
supervision, this is part of partial fulfilment of the requirement for submission of
Maharashtra State Board of Technical Education, Mumbai during fourth
Semester of Academic year 2020-2021.

GUIDE H.O.D PRINCIPAL


Mr.Dhongade.R Mr. Desai A.k. Mr. Dhumal
S.U
If Dept. If Dept. If Dept
A.B.I.T. ( Poly ), Satara A.B.I.T. ( Poly ), Satara A.B.I.T ( Poly ), Satara
…Index…

Sr. No Title Page No

1 Abstract

2 Source code / screenshot

3 Learning Outcomes

4 References

5 Weekly Work / Progress Report


Abstract
Employees are the backbone of any company therefore their management plays a
major role indeciding the success of an organization [1]. Employees Management
Software makes it easy forthe employer to keep track of all records. This software
allows the administrator to editemployees, add new employees,
transfer/promote/terminate employees. Each employee in thedatabase is associated
with a position can be added and edited when need arises. Employees can be
transferred between positions easily without having to retype back their
information in thedatabase. You can check to see if there are duplicate
positions/employees in the database. Mostof all, the employer can assign tasks to
employees and assess their progress in order to keep trackof employee
performance.A flexible and easy to use Employee Management software solution
for small and medium sizedcompanies provides modules for personnel information
management thereby organization andcompanies are able to manage the crucial
organization asset
INTRODUCTION

Employee Management system is an application that enables users to create and


store Employee Records. The application also provides facilities of a payroll
system which enables user to generate Pay slips too. This application is helpful to
department of the organization which maintains data of employees related to an
organization .
Java is a platform independent language. Its created applications can be used on a
standalone machine as well as on distributed network. More over applications
developed in java can be extended to Internet based applications.
Thus java was chosen as background to design this application.
SOURCE CODE
import java.io.*;
import java.lang.*;

class Employee
{
String name;
String id;
int salary;
BufferedReader br=new BufferedReader(new
InputStreamReader(System.in));
void get()
{
try
{
System.out.print("Enter the Name: ");
name=br.readLine();
System.out.print("Enter the Id: ");
id=br.readLine();
System.out.print("Enter the Salary: ");
salary=Integer.parseInt(br.readLine());
}
catch(Exception ex)
{
System.out.println(ex);
}
}
void show()
{
System.out.println("The name is: "+ name);
System.out.println("The id is: "+ id);
System.out.println("The salary is: "+ salary);
}
}
public class Program2
{
public static void main(String args[])
{
Employee e[]=new Employee[2];
for (int i=0;i<2;i++)
{
e[i]=new Employee();

}
for(int i=0;i<2;i++)
{
e[i].get();
}
for(int i=0;i<2;i++)
{
e[i].show();
}
}
}

OUTPUT

The name is: ABC


The id is: 12
The salary is: 20000
The name is: XYZ
The id is: 21
The salary is: 25000
Learning Outcomes…
So by doing this project of employee management system we came to know
how the data is managed in company. We also learn how to use some basic
functions that is used to create a program similar to this to use salary , id, name,
update user application

References….

● YouTube
● Google
Weekly Work / Progress Report …

Details of 16 Engagement Hours of the Student


Regarding Completion of the Project
Timing
Wee Sign of
k Date Durati Work or activity Performed the
No. From To on in Guide
hours
Discussion and Finalization of the
1 4/ 03/2021 1pm 3 pm 2 hrs
Project Title
Preparation and Submission of
2 9/ 03/2021 4pm 5:30pm 1.5 hrs
Abstracts

3 15 /03 /2021 4pm 6pm 2 hrs Literature Review

4 28/03/2021 2pm 4:30pm 2.5 hrs Collection of Data

5 2/03/2021 09am 12pm 3 hrs Sorting of Data

6 15/03/2021 1pm 3pm 2 hrs Discussion and Outline of Content

Rough Writing of the Projects


7 29/03/2021 3pm 6pm 3 hrs
Contents
Editing and Proof Reading of the
8 29/0932021 2pm 4pm 2 hrs
Contents

9 3 /03/2021 1pm 3pm 2 hrs Final Completion of the Project

Seminar Presentation, viva-vice,


10 4/03/2021 9am 11am 2 hrs Assessment and Submission of
Report

Name of Project Guide: Dongade.R .


983 Abhaysinhraje Bhonsle Institute of Technology
ANNEXURE II
EVALUATION SHEET FOR THE MICRO PROJECT
Academic Year: 2020-2021 Name of the Faculty: Dhongade.R.
Semester: FOURTH Program Name: Information Technology

Course Name: JAVA Course Code: 22413

Name of Students: Dhavle Aditya


Kengar Nikhil
Title of Project :
MICRO PROJECT REPORT ON STUDENT RECORD SYSTEM

 COs addressed by the Micro Project:


(A) Using this project We can apply the knowledge which can gain in whole
semester
(B) Major Learning Outcomes achieved by students by doing the Project:

Marks out of Marks out of


6 for 4 for
Total
performance performance
Roll No Student Name Out
in group in Oral /
activity presentation
of 10
(D5- Col. 8) (D5- Col. 9)
Dhavle Aditya
11

19 Kengar Nikhil
………………………………………………………………………………………………….

You might also like