subject

#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_

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:00
Ihave an iphone 8plus should i get another phone like samsung note 9 or s9 ? ?
Answers: 2
question
Computers and Technology, 22.06.2019 13:50
The instruction ishl (shift left integer) exists in jvm but not in ijvm. it uses the top two values on the stack, replacing the two with a single value, the result. the sec- ond-from-top word of the stack is the operand to be shifted. its content is shifted left by a value between 0 and 31, inclusive, depending on the value of the 5 least signifi- cant bits of the top word on the stack (the other 27 bits of the top word are ignored). zeros are shifted in from the right for as many bits as the shift count. the opcode for ishl is 120 (0x78).a. what is the arithmetic operation equivalent to shifting left with a count of 2? b. extend the microcode to include this instruction as a part of ijv.
Answers: 1
question
Computers and Technology, 24.06.2019 07:00
Why do we mark tlc plates with pencil and not with pen
Answers: 2
question
Computers and Technology, 24.06.2019 13:50
What does code do? a creates a text box that says "solid black" b creates a black border of any width c creates a black border 1 pixel wide
Answers: 1
You know the right answer?
#ifndef _NONTECHNICAL_H #define _NONTECHNICAL_H
#include
using namespace std;
#i...
Questions
question
Spanish, 22.10.2020 21:01
question
Spanish, 22.10.2020 21:01
Questions on the website: 13722367