Questions
There is a 95.05% chance the project below can be completed in X days or less....

There is a 95.05% chance the project below can be completed in X days or less. What is X? In the space provided below type in the values for each activity’s expected time, variance, list of critical activities, Project duration and value of X. Draw the network diagram

1. Expected value for each activity: BLANK-1

2. Variance for each activity: BLANK-2

3. Critical activities: BLANK-3

4. Project duration: BLANK-4

5. X = BLANK-5

ACTIVITY PREDECESSORS OPTIMISTIC (DAYS) Most likely(days) pessimistic (days)
A NONE 1 4 7
B NONE 2 2 2
C A 2 5 8
D A 3 4 5
E B,C 4 6 8
F B,C 0 0 6
G D,E 3 6

9

In: Operations Management

suppose that you heard a famous author say, " Computer games are primarily for telling stories"....

suppose that you heard a famous author say, " Computer games are primarily for telling stories". Whether you agree or disagree with him, and explain why?

Solution plz?

In: Computer Science

“The start of many mental health conditions most often occurs in adolescence. Half of individuals living...

“The start of many mental health conditions most often occurs in adolescence. Half of individuals living with mental illness experience onset by the age of 14. This number jumps to 75% by the age of 24. One in five youth live with a mental health condition, but less than half of these individuals receive needed services. Undiagnosed, untreated or inadequately treated mental health conditions can affect a student’s ability to learn, grow and develop. Schools provide a unique opportunity to identify and treat mental health conditions by serving students where they already are” (National Alliance On Mental Illness, 2017).

Please post a brief (1-2 paragraph) response to this quote. Do you believe that schools could or should play a significant role in supporting the mental health of students? Why or why not? Additionally, be sure to address the benefits to addressing the mental health needs of children in schools? And what are the challenges?

In: Psychology

Based on the following data and using a 365-day year: 12/31/Year 1 accounts receivable $ 100,000...

Based on the following data and using a 365-day year:

12/31/Year 1 accounts receivable $ 100,000
12/31/Year 2 accounts receivable 70,000
For the year ended 12/31/Year 1, net sales 1,050,000
For the year ended 12/31/Year 2, net sales 1,200,000

a. Compute the accounts receivable turnover. Round your answer to two decimal places.

b. Compute the number of days' sales in receivables for year 2. Round your answer to two decimal places.
days

c. The industry average turnover is 20 times during the year, and the number of days' sales in receivables averages 25. How does this situation compare to the industry average?

Is it slightly better or slightly worse than the average?

In: Accounting

Henry Thomas Throckmorton was born at 2:06 this morning at Atherton Memorial Hospital. Henry weighed 8...

Henry Thomas Throckmorton was born at 2:06 this morning at Atherton Memorial Hospital. Henry weighed 8 pounds, 2 ounces, and is 22 inches long. He appears to be a healthy and normal human infant. What is the basic nature of human personality? What influences will shape little Henry’s personality? How will his parents influence the development of his personality? Imagine that you have asked these questions of three psychologists, one representing Freud and psychoanalytic psychology, the second representing Skinner and the radical behaviorists, and the third representing Carl Rogers, Abraham Maslow, and humanistic psychology. Please respond to the prompts. Please post your original discussion by Wednesday and reply to at least three of your classmates' original discussions over 3 - 5 different days of the week by Sunday, 11:55p. Please reply to my posting changing my name to your last name in the subject. When replying to your classmates’ original discussions please do not change the title in the subject including their last name. This is a question and answer forum. In order to see other responses to these questions, you must first post your answer

In: Psychology

Show that (0^n1^n) + (01)^n is decidable using a Turing machine

Show that (0^n1^n) + (01)^n is decidable using a Turing machine

In: Computer Science

in one paragraph, explain how does preoccupied parent cause low self esteem in teenagers?

in one paragraph, explain how does preoccupied parent cause low self esteem in teenagers?

In: Psychology

Why software development life cycle (SDLC) is not enough for any game development? Any discuss the...

Why software development life cycle (SDLC) is not enough for any game development? Any discuss the different phrases of game game development Life cycle (GDLC)?

solution plz ?

In: Computer Science

The level of assurance provided by an external audit is absolute. Is this statement true or...

The level of assurance provided by an external audit is absolute. Is this statement true or false? Explain?

In: Accounting

#include <iostream> #include <cmath>using namespace std; const int A_CONSTANT = 3; void functionA(int a[], int aNumber);...

#include <iostream>

#include <cmath>using namespace std;

const int A_CONSTANT = 3;

void functionA(int a[], int aNumber);

void functionB(int a[], int anotherNumber);

void functionC(const int anArray[], int aNumber);

void functionD(int& sum);

int functionE(double number); void functionF(int n);

int main( ){

int production[A_CONSTANT];

cout << "This program displays a graph showing\n" << "production for each factory in the company.\n";

functionA(production, A_CONSTANT);

functionB(production, A_CONSTANT);

functionC(production, A_CONSTANT);

return 0;}

void functionA(int a[], int aNumber){

for (int someNumber = 1;someNumber <= aNumber; someNumber++)

{ cout << endl << "Enter production data for plant number " << someNumber << endl; functionD(a[someNumber - 1]);}}

void functionD(int& sum){

cout << "Enter number of units produced by each department.\n" << "Append a negative number to the end of the list.\n";

sum = 0; int next;

cin >> next;

while (next >= 0) {

sum = sum + next;

cin >> next; }

cout << "Total = " << sum << endl;

  

}

void functionB(int a[], int anotherNumber){

for (int index = 0; index < anotherNumber; index++)

a[index] = functionE(a[index]/1000.0);

  

}

int functionE(double number) {

return static_cast<int>(floor(number + 0.5));

  

}

void functionC(const int anArray[], int aNumber){

cout << "\nUnits produced in thousands of units:\n";

for (int someNumber = 1; someNumber <= aNumber; someNumber++) {

cout << "Factory #" << someNumber << " ";

functionF(anArray[someNumber - 1]);

cout << endl;

}

}

void functionF(int n) {

for (int count = 1; count <= n; count++) cout << "*";

  

}

The main purpose of this lab is to reinforce the lectures on code style and documentation.

Make as many improvements to the code style as you can including white space, variable names, etc. (NOTE: do this manually – no automated formatting tools allowed). Comment the file completely.

The main purpose of this lab is to reinforce the lectures on code style and documentation.

Make as many improvements to the code style as you can including white space, variable names, etc. (NOTE: do this manually – no automated formatting tools allowed). Comment the file completely.

The main purpose of this lab is to reinforce the lectures on code style and documentation.

Make as many improvements to the code style as you can including white space, variable names, etc. (NOTE: do this manually – no automated formatting tools allowed). Comment the file completely.

The reason why I wrote the question 3 times is because I want you to READ the question as the last person failed to do so, Please comment out the code

thanks

In: Computer Science

Provide a personal decision tree example

Provide a personal decision tree example

In: Operations Management

WRITE 2 PARAGRAPHS IN YOUR OPINION ON HOW YOU AGREE WITH THEIR DISCUSSION ON WHY SINGLE...

WRITE 2 PARAGRAPHS IN YOUR OPINION ON HOW YOU AGREE WITH THEIR DISCUSSION ON WHY SINGLE PATROL IS BETTER.

A. Definitely a single patrol unit is more effective in my opinion all-way around. The pros are that this is a less expensive alternative rather than having a two person unit, for the most part a single person unit would be able to handle most calls, however in certain types of calls a two person unit would be most effective to have the extra man power in case it is needed. Some disadvantages to the single patrol unit is that in a worst case scenario you have to keep your ground and be able to fight off any possible threats until backup arrives. The advantage a two person unit has is exactly that, two persons that have the extra muscle to back each other up and cover more ground in situations where a fleeing suspect has fled the scene of a crime, etc. A disadvantage this creates for the agencies is that this is a more expensive alternative and the extra officer will not be able to cover another sector of the jurisdiction where crime could be taking place.

B. A single person patrol is when one person patrol a particular area, compared to two-person patrol is when two people are on patrol in a particular area. A single person patrol versus two-person patrol have advantages and disadvantages. In a single patrol they are more police officers in different areas. They are faster response on call, because the officer are very disperse. People will feel like they are getting better police protection. They will be less distractions due to they are alone. Disadvantage are they say it is impossible to observe properly and operate a vehicle require major attention. They cannot observe while preparing reports, during interrogations, and while answering questions. Two- person patrol will keep the other person from falling asleep. They are two people so in a immediate emergency they both are their for each other. It is better while one is busy the other can observe. In my opinion, they both have advantages and disadvantages but I think single patrol is better. They are more dispersed so they will get to emergency faster. If they need back up the back up is available within two minutes. They would be less distracted. The most important thing is that the people will feel safer due to faster response when in danger.

In: Psychology

Give and example of a real life situation that includes: DATA STATISTIC PARAMETER How does the...

Give and example of a real life situation that includes: DATA STATISTIC PARAMETER How does the statistic and the parametere differ?

In: Math

Write a python program that asks the user about their emails and then check the following:...

Write a python program that asks the user about their emails and then check the following:

  1. the entered email is a valid email address (email format is [USERNAME]@[ORGANIZATION].[DOMAIN]. i.e. it should have '@' followed by organization name then at least one '.'and domain)
  2. determine if the entered email is a KFUPM email or not (KFUPM emails ends with @kfupm.edu.sa)
  3. if the entered email is a valid KFUPM email, determine if it is a freshman student email or not (assume all freshman students have ID numbers starts with s2019 and the student ID length is 9 digits)
Sample run Sample run Sample run
write your email address: [email protected]
The email address is Valid
The entered email is a KFUPM email
The entered email is a freshman student email
write your email address: ics@104.
The entered email is not valid
write your email address: [email protected]
The email address is Valid

In: Computer Science

You will prepare a comprehensive 3-page proposal based on the research done in Assignment #1.(HP COMPANY)...

You will prepare a comprehensive 3-page proposal based on the research done in Assignment #1.(HP COMPANY) Ethically you may not use a project prepared for a prior course. In this assignment you must find additional funding necessary to purchase the company (not just to invest), and as an owner you need to identify what innovations (think beyond the obvious) are necessary to help the company achieve an improved financial status, increased global market share, and set new goals for a 5 year growth plan. As a leader, what change initiatives would you create and why? Provide a professional rationale using evidence. Include an introduction, a conclusion, and a references page Use a minimum of 3 credible sources that are cited within your proposal. Include proper citation of any graphs or figures that you do not create yourself. (please Take HP company for this Question )

Please provide 4 to 5 pages informations about this HP company.

In: Operations Management