1. White blood cells such as leukocytes, neutrophils, and monocytes can engulf large foreign substances like...

1. White blood cells such as leukocytes, neutrophils, and monocytes can engulf large foreign substances like bacteria.

During this process the plasma membrane of the white blood cell invaginates, forming a pocket around the bacteria cell. The pocket pinches off, resulting in the bacteria cell being contained in a newly created intracellular vesicle formed from the plasma membrane.

Which of the following processes could be responsible for white blood cells engulfing bacteria cells?

Exocytosis

Endocytosis

Pinocytosis

Osmosis

2. Water travels up to 124m from the roots to the top of Giant Sequoias. During this journey water travels against the force of gravity through narrow “circulatory” vessels inside of the tree. Which two water properties are responsible to such a feat?! Name AND briefly describe the properties.

Please use complete sentences to explain your answer.

3. You are helping your 13-year old cousin edit their biology lab report about protein structure and function. Then you encounter a sentence in the report that says “the high temperature broke down the protein into many pieces and this affected its ability to function”. How would you correct this misunderstanding?

In: Biology

Robert Altoff is vice president of engineering for a manufacturer of household washing machines. As part...

Robert Altoff is vice president of engineering for a manufacturer of household washing machines. As part of a new product development project, he wishes to determine the optimal length of time for the washing cycle. Included in the project is a study of the relationship between the detergent used (four brands) and the length of the washing cycle (18, 20, 22, or 24 minutes). In order to run the experiment, 32 standard household laundry loads (having equal amounts of dirt and the same total weights) are randomly assigned to the 16 detergent–washing cycle combinations. The results (in pounds of dirt removed) are shown below. Detergent Brand Cycle Time (min) 18 20 22 24 A 0.14 0.13 0.19 0.17 0.13 0.11 0.18 0.20 B 0.15 0.16 0.19 0.21 0.12 0.14 0.17 0.18 C 0.17 0.17 0.19 0.20 0.19 0.16 0.20 0.22 D 0.11 0.12 0.18 0.15 0.14 0.15 0.17 0.19 Complete an ANOVA table. Use the 0.05 significance level. (Do not round your intermediate calculations. Enter your SS, MS, p to 3 decimal places and F to 2 decimal places.) Choose the right option.

In: Math

What does the song "No Church in the Wild" use from Plato's dialogue Euthyphro? What do...

What does the song "No Church in the Wild" use from Plato's dialogue Euthyphro? What do you understand the song to be trying to say with that quote in this song? Is the song using the quote from Plato to convey a different meaning than it has in the dialogue by Plato?

In: Psychology

Given below an example of memory configuration after a number of placement and swapping-out operations. Show...

  1. Given below an example of memory configuration after a number of placement and swapping-out operations. Show the location of new allocation using first-fit, next-fit and worst-fit placement algorithms in satisfying the following allocation requests:
    1. 10M.
    2. 15M.

Allocated block

Free block

4M

12M

16M

8M

   14M

20M

Last allocated block (4M)

In: Computer Science

Logging in western North America impacts populations of western trillium, a long-lived perennial that inhabits confider...

Logging in western North America impacts populations of western trillium, a long-lived perennial that inhabits confider forests (Trillium ovatum). Jules and Ratchke (1999) measured attributes of eight local populations of western trillium, confined to forest patches of varying size created by logging in southwestern Oregon. Their data, presented in the following table, compares estimates of recruitment (the density of new plants produced in each population per year) at each site with the distance from the site to the edge of the forest fragment.

Local population

Distance to clear-cut edge (m)

Recruitment

1

67

0.0053

2

65

0.0021

3

61

0.0069

4

30

0.0006

5

84

0.0124

6

97

0.0045

7

16

0.0028

8

332

0.0182

a. Display these data in an appropriate graph. Examine the graph and describe the shape of the distribution. What departures from the assumption of correlation analysis do you detect?

b. Choose a transformation and transform one or both of the two variables. Plot the results. Did the transformation solve the problem? If not, try a different transformation.

c. Using the transformed data, estimate the correlation coefficient between the two variables. Provide a standard error with your estimate.

d. Calculate an approximate 95% confidence interval for the correlation coefficient.

In: Math

The Kaumajet Factory produces two products - table lamps and desk lamps. It has two separate...

The Kaumajet Factory produces two products - table lamps and desk lamps. It has two separate departments - Finishing and Production. The overhead budget for the Finishing Department is $700,050, using 359,000 direct labor hours. The overhead budget for the Production Department is $330,546 using 61,900 direct labor hours.

If the budget estimates that a desk lamp will require 5 hours of finishing and 8 hours of production, what is the total amount of factory overhead the Kaumajet Factory will allocate to desk lamps using the multiple production department factory overhead rate method with an allocation base of direct labor hours, if 10,000 units are produced?

a.$318,312

b.$166,480

c.$53,400

d.$524,700

In: Accounting

Java Coding Program. In this assignment, you will write a program that analyzes Phoenix area 2018...

Java Coding Program.

In this assignment, you will write a program that analyzes Phoenix area 2018 rainfall data. Inside the main() method, first you will get the rainfall data for each of the 12 months in 2018 from the user and stores them in a double array. Next, you will need to design the following four value-returning methods that compute and return to main() the totalRainfall, averageRainfall, driestMonth, and wettestMonth. The last two methods return the index (or number) of the month with the lowest and highest rainfall amounts, not the amount of rain that fell those months. Notice that this month index (or number) can be used to obtain the amount of rain that fell those months.

I need help with driestMonth and wettestMonth. Wettest month is not giving me the correct output.

This is how it should read when it prints out on screen. Example : "The least rain fell in May with 0.35 inches."

This is what I have so far.

----------------------------------------------------------------------------

import java.util.Scanner;
import java.text.DecimalFormat;

public class Assignment12
{
public static void main(String[] args)
{
// variables
final int numMonths = 12;
double[] rainArray = new double[numMonths];
String[] month = {"Januray", "February", "March", "April", "May",
"June", "July", "August", "September",
"October", "November", "December"};
  
Scanner scan = new Scanner(System.in);
DecimalFormat fmt = new DecimalFormat("0.00");
  

// get user input for rainfall each month
for(int i=0; i < numMonths; i++)
{
System.out.print("\nEnter " + month[i] + " rainfall amount: ");
rainArray[i] = scan.nextDouble();
}
  
System.out.print("\n==== 2018 Rain Report for Phoenix, AZ ====");
System.out.print("\nTotal rainfal: " + fmt.format(getTotal(rainArray)));
System.out.print("\nAverage monthly rainfall: " + fmt.format(getAverage(rainArray)));
System.out.print("\nThe least rain feel in " + getWettestMonth(rainArray));
System.out.print("\nThe most rain fell in ");
}
  
public static double getTotal(double[] rainArray)
{
double total = 0;
final int numMonths = 12;
for(int i=0; i < numMonths; i++)
{
total = total + rainArray[i];
}
return total;
}
  
public static double getAverage(double[] rainArray)
{
double total = 0;
double average = 0;
final int numMonths = 12;
for(int i=0; i < numMonths; i++)
{
total = total + rainArray[i];
}
average = total / numMonths;
return average;
}
  
public static int getWettestMonth(double[] rainArray)
{
int mostRainIndex = 0;
final int numMonths = 12;
for(int i=0; i < numMonths; i++)
{
if(rainArray[i] > rainArray[mostRainIndex])
{
mostRainIndex = i;
}
}
return mostRainIndex;
}

public static int getDriestMonth(double[] rainArray)
{
//code
}
}

In: Computer Science

calculate the expectation values of x, x2, p, p2 in n = 0 to n =...

calculate the expectation values of x, x2, p, p2 in n = 0 to n = 10 states in HARMONIC OSCILLATOR. (DO NOT USE LADDER OPERATOR METHOD).

solve it by considering harmonic oscillator  WAVEFUNCTION

In: Physics

An asset manager follows an active international asset allocation strategy. The average execution cost for a...

An asset manager follows an active international asset allocation strategy. The average execution cost for a buy or a sell order is forecasted at 0.6%. On average, the manager turns over the portfolio once a year. Various administrative costs include a custodial cost amount of 0.5% per year of assets under management. The annual management fee is 1% of assets under management. The annual expected return before costs is 14% compared to an expected return of 10% on a passive global benchmark (some global index).
1. What is the annual expected return net of execution costs?
2. What is the net annual expected return for the client?
3. Should the client expect the portfolio to outperform the global index used as a benchmark?

In: Finance

Explain the Socratic Method. What would be some merits and some problems that accompany this dialectic?

Explain the Socratic Method. What would be some merits and some problems that accompany this dialectic?

In: Nursing

HOW STARBUCKS USES PRICING STRATEGY FOR PROFIT MAXIMIZATION In January 2020, Starbucks raised their beverage prices...

HOW STARBUCKS USES PRICING

STRATEGY FOR PROFIT

MAXIMIZATION

In January 2020, Starbucks raised their beverage prices by an average of 1% across the U.S, a move that represented the company’s first significant price increase in 18 months. I failed to notice because the price change didn’t affect grande or venti (medium and large) brewed coffees and I don’t mess with smaller sizes, but anyone who purchases tall size (small) brews saw as much as a 10 cent increase. The company’s third quarter revenue rose 25% to $417.8 million from $333.1 million a year earlier, and green coffee prices have plummeted, so what gives?

Starbucks claims the price increase is due to rising labor and non-coffee commodity costs, but with the significantly lower coffee costs already improving their profit margins, it seems unlikely this justification is the true reason for the hike in prices. In addition, the price hike was applied to less than a third of their beverages and only targets certain regions. Implementing such a specific and minor price increase when the bottom line is already in great shape might seem like a greedy tactic, but the Starbucks approach to pricing is one we can all use to improve our margins. As we’ve said before, it only takes a 1% increase in prices to raise revenues by an average of 11%.

Value Based Pricing Can Boost Margins

For the most part, Starbucks is a master of employing value based pricing to maximize profits, and they use research and customer analysis to formulate targeted price increases that capture the greatest amount consumers are willing to pay without driving them off. Profit maximization is the process by which a company determines the price and product output level that generates the most profit. While that may seem obvious to anyone involved in running a business, it’s rare to see companies using a value based pricing approach to effectively uncover the maximum amount a customer base is willing to spend on their products. As such, let’s take a look at how Starbucks introduces price hikes and see how you can use their approach to generate higher profits.

An Overview of the Starbucks Pricing

Strategy:

The Right Customers and the Right Market

While cutting prices is widely accepted as the best way to keep customers during tough times, the practice is rarely based on a deeper analysis or testing of an actual customer base. In Starbucks’ case, price increases throughout the company’s history have already deterred the most price sensitive customers, leaving a loyal, higher-income consumer base that perceives these coffee beverages as an affordable luxury. In order to compensate for the customers lost to cheaper alternatives like Dunkin Donuts, Starbucks raises prices to maximize profits from these price insensitive customers who now depend on their strong gourmet coffee.

Rather than trying to compete with cheaper chains like Dunkin, Starbucks uses price hikes to separate itself from the pack and reinforce the premium image of their brand and products. Since their loyal following isn’t especially price sensitive, Starbucks coffee maintains a fairly inelastic demand curve, and a small price increase can have a huge positive impact on their margins without decreasing demand for beverages. In addition, only certain regions are targeted for each price increase, and prices vary across the U.S. depending on the current markets in those areas (the most recent hike affects the Northeast and Sunbelt regions, but Florida and California prices remain the same).

Product Versioning & Price Communication

They also apply price increases to specific drinks and sizes rather than the whole lot. By raising the price of the tall size brewed coffee exclusively, Starbucks is able to capture consumer surplus from the customers who find more value in upgrading to Grande after witnessing the price of a small drip with tax climb over the $2 mark. By versioning the product in this way, the company can enjoy a slightly higher margin from these customers who were persuaded by the price hike to purchase larger sizes.

Starbucks also expertly communicates their price increases to manipulate consumer perception. The price hike might be based on an analysis of the customer’s willingness to pay, but they associate the increase with what appears to be a fair reason. Using increased commodity costs to justify the price as well as statements that aim to make the hike look insignificant (less than a third of beverages will be affected, for example) help foster an attitude of acceptance.

on Wednesday April 8, Starbucks announced that it expects its fiscal second-quarter earnings to be cut nearly in half as the coronavirus pandemic causes sales to plunge in its two largest markets.

What is the type of Starbucks’ market?

What are the main conditions of this market

What is the shape of Starbucks’ demand curve?

What is the degree of price elasticity of demand of Starbucks? Why?

Did Starbucks make a good economic decision in raising the prices? Why?

What are the Starbucks’ maximum profit conditions?

What are the main three items groups that contribute to Starbucks variable costs?

What would happen to Starbucks’ profit if the prices of all three go down, holding other things fixed?

On Wednesday April 8, Starbucks announced that it expects its fiscal second-quarter earnings to be cut nearly in half as the coronavirus pandemic causes sales to plunge in its two largest markets. What would be the right pricing strategy to maximize revenues for Starbucks in the current circumstances?

If you have your own business, what do you learn From Starbucks case study?

In: Economics

For this assignment, we will learn to use Python's built in set type. It's a great...

For this assignment, we will learn to use Python's built in set type. It's a great collection class that allows you to get intersections, unions, differences, etc between different sets of values or objects.

1. Create a function named common_letters(strings) that returns the intersection of letters among a list of strings. The parameter is a list of strings.

For example, you can find the common letter in the domains/words statistics, computer science, and biology. You might easily see it, but you need to write Python code to compute the answer. In order to pass the tests you must use the set api.

In: Computer Science

Consider the cell described below at 261 K: Fe | Fe2+ (0.903 M) || Cd2+ (0.991...

Consider the cell described below at 261 K:

Fe | Fe2+ (0.903 M) || Cd2+ (0.991 M) | Cd

Given EoCd2+→Cd = -0.403 V, EoFe2+→Fe = -0.441 V. Calculate the cell potential after the reaction has operated long enough for the Fe2+ to have changed by 0.373 mol/L

In: Chemistry

Assume two neighbors who live next to a pond. Both neighbors get together to determine how...

Assume two neighbors who live next to a pond. Both neighbors get together to determine how each of them value a large deck overseeing the pond. After some economic analysis, they arrive at the following demand estimates: Qa = 160 − 20Pa , Qb = 60 − 5Pb where Q is the size of the deck to be built and P is the price of inputs and labor.

a) Based on these estimates, determine the market demand (assuming these are the only two households living next to the pond) for this public good, the deck overlooking the pond. Draw three graphs on the top of each other -first graph for A’s demand, a second graph for B’s demand, and the third graph for the market demand.

b) Explain the shape of the demand curve. Determine the willingness to pay when the size of the pond is 60 square feet.

c) If the market supply for pond decks were P= 6 + 0.15Q, what would be the optimal provision of this public good, that is what would the size of the pond?

d) Which neighbor is more likely to build the pond? Explain your answer.

In: Economics

on January 2nd 2016 the Jackson company purchased equipment to be used in its manufacturing process...

on January 2nd 2016 the Jackson company purchased equipment to be used in its manufacturing process the equipment has an estimated life of 8 years and an estimated residual value of $30,625 expenditures made to acquire the assets were as follows

purchase price $154,000
Freight charges $2,000
installation charges $4,000

Jackson's policy is to use the double declining balance method of depreciation in the early years of the equipment's life and then switch to straight line halfway through the equipments life.

1. calculate depreciation for each year of the assets eight-year life

2. discuss the accounting treatment of the depreciation on the equipment

In: Accounting