Computers and Technology

#ifndef _NONTECHNICAL_H #define _NONTECHNICAL_H
#include
using namespace std;
#include "employee. h"
// Q1a: Create Nontechnical class (5 points)
// Part 1: Create a child class of the Employee class named 'Nontechnical'
class Nontechnical : public Employee {
// Part2: Declare constructor which accepts the same 3 parameters as the parent class Employee's constructor.
// Pass the 3 parameters to the super constructor of the Employee class.
public:
Nontechnical(string empName, double salary, empType employeeType);
// Part 3: Re-declare the method displayEmployee (virtual method found inside of parent class Employee)
void displayEmployee();
}
#endif // _NONTECHNICAL_H#pragma once
#ifndef _TECHNICAL_H_
#define _TECHNICAL_H_
#include
using namespace std;
#include "employee. h"
// Q1b: Create Technical class (5 points)
// Part 1: Create a child class of the Employee class named 'Technical'
class Technical : public Employee {
// Part2: Declare constructor which accepts the same 3 parameters as the parent class Employee's constructor.
// Pass the 3 parameters to the super constructor of the Employee class.
public:
Technical(string empName, double salary, empType employeeType);
// Part 3: Re-declare the method displayEmployee (virtual method found inside of parent class Employee)
void displayEmployee();
}
#endif // _TECHNICAL_H_

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 05:00, yddlex
Modern businesses use different technologies to accomplish work tasks
Answers: 2
image
Computers and Technology, 22.06.2019 17:00, bnvghnbbb
Match the following. 1. show grouping of word processing tasks that can be performed quick access toolbar 2. shortcut location for commonly used elements scroll bars 3. organized commands used to modify documents ribbon 4. used to align and measure content in a word screen zoom bar 5. vertical and horizontal bars that are used to navigate through a document contextual tabs 6. displays the name of the document in use ruler 7. allows users to enlarge or shrink a visual of a word document title bar
Answers: 2
image
Computers and Technology, 22.06.2019 23:50, Crull5999
List a few alternative options and input and output over the standerd keyboard and monitor. explain their functioning in details.
Answers: 2
image
Computers and Technology, 23.06.2019 10:00, serenityharmon1
Hey i just logged on and one of the moderators deleted a bunch of my answers to questions, even though the answers were right and the people it doesn't make sense but if anyone wants to talk about anything just message me lol (this is super random lol)
Answers: 1
Do you know the correct answer?
#ifndef _NONTECHNICAL_H #define _NONTECHNICAL_H
#include
using namespace std;
#i...

Questions in other subjects:

Konu
Mathematics, 11.10.2020 21:01