Questions
The impact of service or customer care service quality management on the pharmaceutical organization performance..This is...

The impact of service or customer care service quality management on the pharmaceutical organization performance..This is a topic to write a whole chapter on.Also note that your work should be referenced from only year 2015-2020.Any other reference work apart from year mentioned earlier won't be accepted,Reference sources should kindly be noted down.Thank you.Already rated

In: Operations Management

11. Can a 12 cm telescope distinguish two stars that are 1.5 arcseconds away from each...

11. Can a 12 cm telescope distinguish two stars that are 1.5 arcseconds away from each other? Justify your answer numerically. (You can assume we're using light in the middle of the visual band.)

In: Physics

Company XYZ has recently deployed a Distributed System for its operations ,but its CEO complains of...

Company XYZ has recently deployed a Distributed System for its operations ,but its CEO complains of increased expenses and delays, can you list two of the pitfalls of Distributes Systems that the system has fallen into?

In: Computer Science

A rigid tank contains 71.0 g of chlorine gas (Cl2) at a temperature of 70°C and...

A rigid tank contains 71.0 g of chlorine gas (Cl2) at a temperature of 70°C and an absolute pressure of 5.20 × 105 Pa. Later, the temperature of the tank has dropped to 37°C and, due to a leak, the pressure has dropped to 3.50 × 105 Pa. How many grams of chlorine gas have leaked out of the tank? (The mass per mole of Cl2 is 70.9 g/mol.)

In: Physics

Do you think ERP solutions are suitable for SIS University, and if so, how, or if...

Do you think ERP solutions are suitable for SIS University, and if so, how, or if not, why?

In: Computer Science

Suppose that you are responsible for running the Facebook page of a local company that you...

  1. Suppose that you are responsible for running the Facebook page of a local company that you are working for. The following metrics summarize the account information for the past month:

    Total number of likes on the posts = 150

    Total number of comments on the posts = 100

    Total number of shares of the posts = 20

    Total number of posts you made = 10

    Total number of followers of the page = 1000

    Answer the next four questions based on the information provided

    What is the amplification rate?

    A.

    15

    B.

    10

    C.

    27%

    D.

    15%

    E.

    2

  1. What is the applause rate?

    A.

    15

    B.

    10

    C.

    2

    D.

    27%

    E.

    15%

  1. What is the engagement rate?

    A.

    10

    B.

    2

    C.

    15

    D.

    15%

    E.

    27%

  1. What is the conversion rate?

    A.

    2

    B.

    15%

    C.

    10

    D.

    15

    E.

    27%

In: Operations Management

Write a java code to ask the user for a string, and assuming the user enters...

Write a java code to ask the user for a string, and assuming the user enters a string containing character "a", your java program must convert all "a" to "b" in the string so for example if user types : "AMAZON" , your program must convert it to "BMBZON"

the driver program must ask :

enter a string containing "a" or "A"

--------- (user enters string)

then it should say;

HERE IS YOUR NEW STRING

---------- (string with all a's converted to b.)

important : all a's should be b and even for capital letters (i.e. A to B).

In: Computer Science

6.13 Lab: Patient Class - process an array of Patient objects This program will create an...

6.13 Lab: Patient Class - process an array of Patient objects

This program will create an array of 100 Patient objects and it will read data from an input file (patient.txt) into this array. Then it will display on the screen the following:

  • 1. The names of the underweight patients.
  • 2. The names of the overweight patients.
  • 3. The names of the obese patients.

Finally, it writes to another file (patientReport.txt) a table as shown below:

Weight Status Report
==================== === ====== ====== =============
Name                 Age Height Weight Status
==================== === ====== ====== =============
Jane North            25   66     120   Normal
Tim South             64   72     251   Obese
.
.
.
==================== === ====== ====== =============
Number of patients: 5

Assume that a name has at most 20 characters (for formatting). Write several small functions (stand-alone functions). Each function should solve a specific part of the problem.

On each line in the input file there are four items: age, height, weight, and name, as shown below:

25 66 120 Jane North    
64 72 251 Tim South

Prompt the user to enter the name of the input file. Generate the name of the output file by adding the word "Report" to the input file's name.

  • If the input file name is patient.txt, the output file name will be patientReport.txt
  • If the input file name is newPatients.txt, the output file name will be newPatientsReport.txt

Display the output file's name as shown below:

Report saved in:  patientReport.txt

If the user enters the incorrect name for the input file, display the following message and terminate the program:

Input file: patients.txt not found!

Here is a sample output:

Showing patients with the "Underweight" status:
Tim South
Linda East
Paul West
Victor Smith
Tom Baker

Showing patients with the "Overweight" status:
none
Showing patients with the "Obese" status:
none
Report saved in:  patient1Report.txt

Main.cpp:

#include "Patient.h"
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
using namespace std;

const int MAX_SIZE = 100;

/* Write your code here:
declare the function you are going to call in this program
*/

int main()
{
Patient patArr[MAX_SIZE];
int size = 0;

string fileName;
cout << "Please enter the input file's name: ";
cin >> fileName;
cout << endl;
/* Write your code here:
function calls
*/
return 0;   
}

/* Write your code here:
function definitions
*/

/*
OUTPUT:

*/

Patient.h:

/*
Specification file for the Patient class
*/

#ifndef PATIENT_H
#define PATIENT_H
#include <string>

using std:: string;


class Patient
{
private:

string name;
double height;
int age;
int weight;

public:
// constructors
Patient();

Patient(string name, int age, double height, int weight);
// setters
void setName(string name);

void setHeight(double height);

void setAge(int age);

void setWeight(int weight);

//getters
string getName() const;

double getHeight() const;

int getAge() const;

int getWeight() const;

// other functions: declare display and weightStatus

void display() const;

string weightStatus() const;
};

#endif

Patient.cpp:

/*
Implementation file for the Patient class.
*/

#include "Patient.h"
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;

/*******
This is the default constructor; it sets everything to 0 or "".
*/
Patient::Patient()
{

name = "";
height = 0;
age = 0;
weight = 0;
}

/*******
This is an overloaded constructor.
It sets the variables according to the parameters.
*/
Patient::Patient(string name, int age, double height, int weight)
{

this->name = name;
this->height = height;
this->age = age;
this->weight = weight;

}

void Patient::setName(string name)
{
this->name = name;
}

void Patient::setHeight(double height)
{
this->height = height;
}

void Patient::setAge(int age)
{
this->age = age;
}

void Patient::setWeight(int weight)
{
this->weight = weight;
}

string Patient::getName() const
{
return this->name;
}

double Patient::getHeight() const
{
return this->height;
}

int Patient::getAge() const
{
return this->age;
}

int Patient::getWeight() const
{
return this->weight;
}

/*******
This function displays the member variables
in a neat format.
*/
void Patient::display() const
{
cout << fixed;
cout << " Name: " << getName() << endl;
cout << " Age: " << getAge() << endl;
cout << " Height: " << setprecision(0) << getHeight() << " inches" << endl;
cout << " Weight: " << getWeight() << " pounds" << endl;
cout << "Weight Status: " << weightStatus() << endl;
}

/*******
This function calculates the BMI using the following formula:
BMI = (weight in pounds * 703) / (height in inches)^2
Then, it returns a string reflecting the weight status according to the BMI:
<18.5 = underweight
18.5 - 24.9 = normal
25 - 29.9 = overweight
>=30 = obese
*/
string Patient::weightStatus() const
{
double bmi;
string stat = "";

if (height > 0)
{
bmi = (getWeight() * 703) / (getHeight() * getHeight());

if (bmi < 18.5)
{
stat = "Underweight";
}
else if (bmi >= 18.5 && bmi <= 24.9)
{
stat = "Normal";
}
else if (bmi >= 25 && bmi <= 29.9)
{
stat = "Overweight";
}
else
{
stat = "Obese";
}
}


return stat;
}

In: Computer Science

Consider how a star like the Sun changes after the Main Sequence. Put the following events...

Consider how a star like the Sun changes after the Main Sequence. Put the following events in the correct order.

1. The outer layers of the star drift off into space creating a planetary nebula.

2. Helium fusion in the core of the star ends

3. The hot, dense core of the star is left behind as a white dward that slowly cools and dims over time.

4. The star shrinks slightly, compressing a shell of hydrogen surrounding the non-burning helium core.

5. The shell surrounding the non-burning carbon/oxygen core begins to fuse helium, and the shell outside of that fuses hydrogen.

6. The star's core becomes hot enough and dense enough to begin fusing helium to carbon and oxygen, causing it to collapse inward somewhat.

7. Shell hydrogen fusion is disrupted and the star shrinks slightly

8. Fusion of hydrogen to helium in the core of the star ends.

9. The star shrinks slightly, compressing a shell of helium surrounding the non-burning carbon/oxygen core, and a shell of hydrogen surrounding the region of helium

10. The star's surface becomes cooler and the star's luminosity increases; the star is now a "red giant."

11.Hydrogen shell fusion causes the outer layers of the star to expand outward.

12. The star's surface becomes cooler and the star's luminosity increases; the star is now an "asymptomatic giant."

13. Shell fusion of hydrogen and helium cause the outer layers of the star to expand outward.

14. The shell surrounding the non-burning helium core begins to fuse hydrogen

15. The star's surface becomes somewhat hotter and the star's luminosity decreases slightly; the star is now a "horizontal branch" star

In: Chemistry

According to Stanovich (2010), case studies and testimonials stand as isolated phenomena. They lack the comparative...

According to Stanovich (2010), case studies and testimonials stand as isolated phenomena. They lack the comparative information necessary to prove that a particular theory or therapy is superior. However, it is wrong to cite a testimonial or a case study as a support for a particular theory or therapy. What might have happened in science if a psychologist or an individual cite a testimonial or a case study as a support for a particular theory or therapy? why, why not?

In: Psychology

A 14.7 μF capacitor is charged to a potential of 55.0 V and then discharged through...

A 14.7 μF capacitor is charged to a potential of 55.0 V and then discharged through a 75.0 Ω resistor.

(a) How long after discharge begins does it take for the capacitor to lose 90.0% of the following?

(i) its initial charge: _______s

(ii) its initial energy: _______s


(b) What is the current through the resistor at both times in part (a)?

(i) at tcharge: ________A

(ii) at tenergy: ________A

In: Physics

1-Explain in detail any 4 types of ERP system used in Saudi Arabia to manage their...



1-Explain in detail any 4 types of ERP system used in Saudi Arabia to manage their small to large scal business organizations?

2-Explain various business modules or areas of an enterprise system?

3-Write at least 8 advantages of ERP system over non ERP system?

In: Operations Management

Discuss what you know on the lean thinking,system and types of waste with giving examples ....

Discuss what you know on the lean thinking,system and types of waste with giving examples .

You answer needs to be at least 8 lines and in paragraphs

In: Operations Management

Comparison of demographics between US and Philipines United States Team's Assigned Country Age distribution - including...

Comparison of demographics between US and Philipines
United States Team's Assigned Country Age distribution - including average age, birth rate and graph of population growth Income:

The Philippines and compare to united states-Marriage: civil or religious? Chosen or arranged? Divorce rate? Marriage customs (clothing, costs, celebrations)? Same sex marriages legal? 10. Shopping: how often? Where? Local, national or international suppliers? Set price or negotiated?

In: Operations Management

• Describe the process of managing stakeholder engagement and how to create and use an issue...

• Describe the process of managing stakeholder engagement and how to create and use an issue log.

In: Operations Management