Questions
1. Explain how and why study of the Humanities is relevant to contemporary human experience. 2....

1. Explain how and why study of the Humanities is relevant to contemporary human experience.

2. Analyze how personal experience affects one's interpretation of humanities texts.

In: Psychology

Write a program that calculates mean and standard deviation for four user entered values. The most...

Write a program that calculates mean and standard deviation for four user entered values. The most common measures of a sample are the mean and the standard deviation. the mean is the sum of the values divided by the number of elements in the data set. The dispersion - or spread in the values - is measured by the standard deviation The equation for the mean is x¯ = x1 + x2 + · · · + xn The equation for the standard deviation is sx = √ (x1 − x¯) 2 + (x2 − x¯) 2 + · · · + (xn − x¯) 2 n − 1 Your program will have the user enter four values (all doubles), You might call them x1, x2,x3,and x4. The program will then pass these four values to a function called mean that will calculate and return the mean of the four values. The mean and the four values will then be passed to a second function called stdev which will calculate and return the standard deviation of the four values. You program should be using functions. There will be a function printHeader that prints the splash screen, a function mean that calculates the mean, a function stdev that calculates the standard deviation, and a function printResults that prints the four values, their mean, and their standard deviation Your program must also include comments with your name, the date, and a short description of the project. It must also print this information as a splash screen at the beginning of the program run. It should print like:

X: 4.00, 7.00, 1.00, 10.00

Mean: 5.50

Std Dev: 3.87

This needs to be done in C++. Below is the format:

//
//   Name
// 1 October 2020
//   Program to calculate the mean and standard deviation
//

//   Pound includes - will need the string and cmath libraries
#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>

using namespace std;

//   Function Prototypes - Need to add three more. One for mean, one for
// standard deviation, and one for the printResults
void printHeader(string, string);
int main(void) {

   // Splash Screen
   printHeader("1 October 2020", "Calculating Statistics");
  
   //   Declare and Initialize all of the variables
   //   Will need doubles for the four data points, as well as a double
// for the mean and one for the standard deviation
  
  
   //   Prompt for entering data - you must enter four values
  
  
   // Pass the four data variables to a function that returns the mean
  
  
  
   //   Pass the four data variables and the mean to a function that returns
// the standard deviation
  
  
  
  
   //   Print the results
   //   Include the original values and the mean and the standard
// DO NOT PRINT IT HERE - pass the variables to a printResults function
  
  
  
  
  
   return 0;
}

//   Function Definitions
void printHeader(string dueDate, string description) {
//   PRINTHEADER void printHeader(string, string) prints the splash screen
//   using the two strings that are passed to the function from the driver.
//  
//   Name:   
//   Date:
//
  
   //   Print the splash screen
   cout << endl;
   cout << "Your Name Here" << endl;
   cout << "CMPSC 101" << endl;
   cout << dueDate << endl;
   cout << description << endl;
   cout << endl;


   return;
}

In: Computer Science

5. Logan’s Enterprises, a manufacturer, reported the following data for May. Beginning balance, Raw Materials Inventory...

5. Logan’s Enterprises, a manufacturer, reported the following data for May.

Beginning balance, Raw Materials Inventory $45,000
Beginning Balance, Work in Process Inventory $52,000
Beginning Balance, Finished Goods $62,000
Ending Balance, Raw Materials Inventory $47,000
Ending Balance, Work in Process Inventory $32,000
Purchase of Raw Materials $92,000
Direct Labor $48,000
Manufacturing Overhead $42,000
Cost of Goods Sold $220,000

Required:

a. How much direct materials were used in production?

b. What were the current manufacturing costs for the month of May?

c. What was the ending balance in the Finished Goods Inventory account?

6. Bluegill, Inc. produces spincast reels. The company’s controller has provided you with the following information.

Beginning balance, Direct Materials Inventory $75,000

Ending balance, Direct Materials Inventory $69,000

Beginning balance, Work in Process Inventory $122,000

Ending balance, Work in Process Inventory $125,000

Direct Labor $757,000

Manufacturing Overhead $347,000

Direct materials purchased $847,000

Required:

Using the above cost information, prepare a cost of goods manufactured schedule.

7. The following data has been taken from the accounting records of Curtis Manufacturing Company for the current year:

Sales $600,000

Purchases of raw materials $350,000

Direct labor cost during period $120,000

Manufacturing overhead incurred during period $60,000

Raw Materials Inventory, beginning $20,000

Raw materials Inventory, ending $25,000

Work in Process Inventory, beginning $47,000

Work in Process Inventory, ending $32,000

Finished Goods Inventory, beginning $75,000

Finished Goods Inventory, ending $82,000

Required:

a. Compute the amount of raw materials moved into production during the period.

b. Compute the amount transferred to finished goods during the period.

c. Compute the amount of goods sold during the period.

8. Classify the following costs incurred by Roper Dress Manufacturing Company by both behavior and function by placing an “X” in the appropriate columns.

Variable Cost Fixed Cost Product Cost Period Cost
Cost of Fabric Used in Dresses
Cost of Lubrication for Sewing Machines
Cost of Commissions Paid to Sales Staff
Salary of Insurance on Office Building
Depreciation on Sewing Machines

In: Accounting

How is it possible for the network layer (L3) to operate in connectionless, best effort manner?...

How is it possible for the network layer (L3) to operate in connectionless, best effort manner? Hint: think upper layer

In: Computer Science

A random sample of 40 adults with no children under the age of 18 years results...

A random sample of 40 adults with no children under the age of 18 years results in a mean daily leisure time of 5.83 ​hours, with a standard deviation of 2.49 hours. A random sample of 40 adults with children under the age of 18 results in a mean daily leisure time of 4.47 ​hours, with a standard deviation of 1.89 hours. Construct and interpret a 95​% confidence interval for the mean difference in leisure time between adults with no children and adults with children (mu 1 - mu 2)

Let mu 1μ1 represent the mean leisure hours of adults with no children under the age of 18 and mu 2μ2

represent the mean leisure hours of adults with children under the age of 18.

The 95​% confidence interval for left parenthesis mu 1 minus mu 2 right parenthesisμ1−μ2 is the range from   

hours to hours.

​(Round to two decimal places as​ needed.)

What is the interpretation of this confidence​ interval?

A.There is 95​% confidence that the difference of the means is in the interval. Conclude that there is insufficient evidence of ainsufficient evidence of asignificant difference in the number of leisure hours.

B.There is a 95​%probability that the difference of the means is in the interval. Conclude that there is a significant difference in the number of leisure hours.

C.There is 95​% confidence that the difference of the means is in the interval. Conclude that there is a significant difference in the number of leisure hours.

D. There is an 95​%probability that the difference of the means is in the interval. Conclude that there is insufficient evidence of a significant difference in the number of leisure hours.

In: Math

What command lists the MAC address on a computer? how do you find it on a...

What command lists the MAC address on a computer? how do you find it on a mobile devices?

In: Computer Science

Implement a function that returns all the items in a binary search tree in order inside...

Implement a function that returns all the items in a binary search tree in order inside a std::vector. Use the following class and function definition:

class BTNode {
public:
   int item;
   BTNode *left;
   BTNode *right;
   BTNode(int i, BTNode *l=nullptr, BTNode *r=nullptr):item(i),left(l),right(r){}
};

BTNode *root = nullptr;

std::vector<int> inorder_traversal(BTNode *node) {
     // implement
}

If the BST has no values, return a vector with no items in it.

#include <iostream>
#include <vector>

class BTNode {
public:
int item;
BTNode *left;
BTNode *right;
BTNode(int i, BTNode *l=nullptr, BTNode *r=nullptr):item(i),left(l),right(r){}
};

BTNode *root = nullptr;

std::vector<int> inorder_traversal(BTNode *node) {
// implement
}

int main()
{
root = new BTNode(10, new BTNode(0), new BTNode(100));

std::vector<int> res = inorder_traversal(root);

for(auto &i : res) {
std::cout << i << ", ";
}
std::cout << std::endl;


return 0;
}

In: Computer Science

What are your thoughts on reimbursement incentives for surgeons?

What are your thoughts on reimbursement incentives for surgeons?

In: Operations Management

The following is an infinite loop: for (int i = 0; i < 10; i++); System.out.println(i...

The following is an infinite loop:

for (int i = 0; i < 10; i++);
System.out.println(i + 4);

TRUE OR FALSE?

In: Computer Science

What are several significant IT developments that you expect to happen in the next ten years....

What are several significant IT developments that you expect to happen in the next ten years. How will these affect the business use of computers?

In: Operations Management

Name____________________________________________ Section (circle one) 15 16 The Mountain Lion Based on a true story Instructions After...

Name____________________________________________ Section (circle one) 15 16

The Mountain Lion Based on a true story

Instructions

After each of the numbered sections of the story answer the question in bold.

In answering each question you will:

Choose and identify 3 psychobiological factors that were in operation, and

Explain how the psychobiological factors were involved (The factor was doing…what?).  

There will be three answers for each section, a total of 12 (3X4) answers for the assignment.

The fifth section is EXTRA CREDIT. There will be no mark-down for weak or wrong responses.

Select items related to psychobiological processes (items) from the list in the box below.  

You may use an item from the list once only.

I suggest that you check off each item as you use it.

Preferred: Assignment will be typed. If handwritten, writing must be easily legible. Check your grammar and spelling. Number all answers in the format of the Assignment, i.e. 1.1., 1.2., 1.3., etc.

Your answers must be in the form of complete sentences.

Late work will be marked down.

Acetylcholine

Adrenal gland

Afferent and Efferent neurons

Amygdala

Antagonistic Neurotransmitter (Specify which neurotransmitter)

Binocular cues

Brightness constancy

Cerebral cortex

Cortisol

Dopamine

Endocrine system (Which hormone)

Endorphins

Epinephrine

Excitatory neurotransmitter (Specify which neurotransmitter)

Figure ground

Frontal lobe

GABA

Gate control theory

Glutamate

Hippocampus

Hypothalamus

Interneurons

Inhibitory neurotransmitter (Specify which..)

Just Noticeable Difference (Be specific)

Kinesthetic sense

Left side of brain

Limbic system

Mirror neurons

Motor neurons

Norepinephrine

Occipital lobe

Olfaction

Parasympathetic nervous system

Parietal lobe

Sensory neurons

Sensory transduction

Serotonin

Sound localization

Sympathetic nervous system

Synaptic transmission

Synaptic vesicles

Temporal lobe

Thalamus

Vestibular sense

1. A man is jogging in Estes Park, Colorado. A mountain lion starts to track him. The man senses something behind him, looks back, and sees the mountain lion. The jogger springs into action and starts running as fast as he can go. He runs to a tree and climbs up.

Name and describe 3 psychobiological factors that may be operating in this situation. Explain what each is doing.

1. All @ 8.3

2.

3.

2. The mountain lion stands up against the tree growling ferociously and roaring, while trying to swat the jogger with its powerful paws.  

The jogger is desperately afraid. He reaches for a nearby branch, breaks it off, and tries to hit the mountain lion. He is trying to keep it from climbing up the tree. He swings the branch, occasionally hitting a paw or a leg, and screams curses at the mountain lion. The jogger does not notice that the temperature is dropping. The lion continues its attempts to reach the jogger. The man looks down at the lion as it roars, revealing long, wicked looking, cat’s teeth.

Name and describe 3 psychobiological processes that the jogger is experiencing.

  

3. The jogger’s wife, knowing how long his run should take, realizes that her husband is late. She becomes increasingly upset and worried. After an hour, she can’t wait any longer, calls the sheriff, and explains her concern. She can’t leave the house because there is an infant. Her hands are shaking as she tells the sheriff her husband’s favorite jogging route.  

How would you explain in 3 psychobiological terms what the jogger’s wife has been experiencing?

1.

2.

3.

4. The sheriff follows the jogging route and arrives at the scene. He sees the Mt. Lion standing up against the tree below the jogger. He immediately understands what is going on. He quickly pulls his riffle from the bracket in his Jeep, aims instinctively, and fires, killing the mountain lion. The grateful jogger climbs down. The sheriff wraps a blanket around him and drives him home.

On the ride back to his house, the jogger feels his body calming down as he distances himself to the extent he can from the extreme physical and mental ordeal. As they approach the jogger’s house, he realizes for the first time that it is very cold outside, and he is wearing only shorts and a tee shirt.  

Shortly after arriving home, he falls asleep on the couch while looking at his baby.

Describe three psychobiological processes that could be in effect for the jogger after the Mt. Lion has been killed and he has left the tree.

3.

Extra Credit

Answer these questions. You have nothing to lose!

5. The next day the jogger and his wife return to the scene of the fearful experience. He has told his wife about how he broke off the dead branch and tried to defend himself. The jogger says, for about the fifth time, that this had been the most terrifying experience in his life. As they approach the tree, he begins to feel uneasy.

He is amazed to see that the branch he broke off is almost 3 inches in diameter was alive and healthy. He wonders how he could have had the strength to break a branch that large and heavy.  

READ THIS QUESTION CAREFULLY!  

YOU ARE INSTRUCTED TO

OFFER A POSSIBLE EXPLANATION TO THE JOGGER.

Reader, how would you begin to explain to the jogger what psychobiological

Processes (3) had been triggered in him that may have accounted for the great

physical strength that enabled him to break off the branch that probably saved

his life?

Altogether 6 pts..

2.

3.

Everybody, except of course the mountain lion, lives happily ever after.  

The end.

In: Psychology

Coulumb's law for the magnitude of the force F between two particles with charges Q and...

Coulumb's law for the magnitude of the force F between two particles with charges Q and Q' separated by a distance d is

F=K * qq'/d^2    where K= 1/4pie e0 and e0= 8.854*10^-12/ (N*m^2) is the permittivity of free space.

Consider two point charges located on the x axis: one charge,

q1 = -16.0nC , is located atx1 = -1.700m ; the second charge, q2 = 38.5nC ,is at the origin (x=0.0000).

What is the net force exerted by these two charges on a third charge q3 = 53.0nC placed between q1 and q2 atx3 = -1.115m ?

Your answer may be positive or negative, depending on the direction of the force.

Express your answer numerically in newtons to three significant figures.
Force on q3?                                N

In: Physics

In python design a simple program that lets the user enter the total rainfall for each...

In python design a simple program that lets the user enter the total rainfall for each of the last 10 years into an array. The program should calculate and display the total rainfall for the decade, the average yearly rainfall, and the years with the highest and lowest amounts. Have screenshot with indentation and output display with explantion.Include comments

In: Computer Science

What types of hardware devices could be used to implement a Customer loyalty system in a...

What types of hardware devices could be used to implement a Customer loyalty system in a restaurant.

In: Operations Management

Suppose Stuart Company has the following results related to cash flows for 2018: Net Income of...

Suppose Stuart Company has the following results related to cash flows for 2018:

Net Income of $5,600,000
Increase in Accounts Payable of $600,000
Decrease in Accounts Receivable of $900,000
Depreciation of $1,900,000
Increase in Inventory of $200,000
Other Adjustments from Operating Activities of -$800,000

Assuming no other cash flow adjustments than those listed above, create a statement of cash flows with amounts in thousands.

What is the Net Cash Flow from Operating Activities?

Please specify your answer in the same units as the statement of cash flows.

In: Accounting