answersLogoWhite

0

2000

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

Synopsis for employee management system?

synopsis of employee details


Srs for employee management system?

SRS for employee management system is quite effective as it contains quite a number of features like tracking time for employees and so many others. SRS stands for Software Requirements Specification.


Programme to implement single and multilevel inheritance taking employee as sample base class in c plus plus?

struct employee { }; struct supervisor : employee { // single inheritance -- a supervisor inherits all the public and protected properties of an employee. }; struct manager : supervisor { // multilevel inheritance -- a manager inherits all the public and protected properties of a supervisor (and therefore an employee). };


Who performs the appraisals on employees?

The actual writing and delivery of the appraisal is typically performed by the employee's direct or immediate supervisor/manager. That said, depending on the company's philisophy and structure, the supervisor/manager may ask the employee's coworkers and other managers who work with the employee for feedback on the employee's performance as well.


C plus plus program that display an employees name by entering an id?

Ideally you'd want to use a DBMS to store and retrieve the employee data, but we'll keep it simple and use some static data instead.#include#include#include#includestruct employee{std::string m_name;unsigned m_id;employee(std::string name, unsigned id): m_name(name), m_id(id) {}};std::vector employees;void load_data (){employees.push_back (employee ("Alan", 1));employees.push_back (employee ("Brian", 2));employees.push_back (employee ("Charles", 3));employees.push_back (employee ("David", 4));employees.push_back (employee ("Eric", 5));}unsigned input_id (std::string prompt){unsigned id = 0;while (1){std::cout