how do we value a stock and decide if it is reflective
of the actual price we are going to pay for the stock? is there any
benchmarks that help measure the risk and associate a
return?
answer please
In: Finance
After the birth of Martha’s second child, she was informed that her newborn had jaundice. The doctor suspects Hemolytic Disease of the Newborn (HDN). What is jaundice and how could the baby have developed it? Describe both HDN and ABO hemolytic disease of the newborn i.e. what causes them to occur and how do they present? Explain TWO differences and TWO similarities between the two diseases and then, discuss prevention and treatments available for the two diseases.
Reminder: Show critical thinking. Support your opinions with scientific evidence (in initial response and response to your classmates). Provide citations for the information you discuss.
In: Nursing
1. Tracking Sales
File Sales.java contains a Java program that prompts for and reads
in the sales for each of 5 salespeople in acompany. It then prints
out the id and amount of sales for each salesperson and the total
sales. Study the code, thencompile and run the program to see how
it works. Now modify the program as follows:
1. Compute and print the average sale. (You can compute this directly from the total; no loop is necessary.)
2. Find and print the maximum sale. Print both the id of the salesperson with the max sale and the amount of thesale, e.g., “Salesperson 3 had the highest sale with $4500.” Note that you don’t need another loop for this; you can do it in the same loop where the values are read and the sum is computed.
3. Do the same for the minimum sale.
4. After the list, sum, average, max and min have been printed, ask the user to enter a value. Then print the id ofeach salesperson who exceeded that amount, and the amount of their sales. Also print the total number ofsalespeople whose sales exceeded the value entered.
5. The salespeople are objecting to having an id of 0—no one wants that designation. Modify your program so thatthe ids run from 1-5 instead of 0-4. Do not modify the array—just make the information for salesperson 1 reside inarray location 0, and so on.6. Instead of always reading in 5 sales amounts, at the beginning ask the user for the number of sales people andthen create an array that is just the right size. The program can then proceed as before.Example of fixed sale person number.
// ***************************************************************// Sales.java//// Reads in and stores sales for each of 5 salespeople. Displays// sales entered by salesperson id and total sales for all salespeople.//// ***************************************************************
import java.util.Scanner;
public class Sales
{
public static void main(String[] args)
{
int numSalesPeople;
Scanner scan = new Scanner (System.in);
System.out.print ("How many Sales people are there: ");
numSalesPeople = scan.nextInt();
int[] sales = new int[numSalesPeople];
int sum;
int maxSales, minSales;
int maxSalesPerson, minSalesPerson;
int amount;
int numOver;
sum = 0;
for (int i=0; i<sales.length; i++)
for (int i=0; i<sales.length; i++)
{
System.out.print("Enter the sales amount for the salesperson " + (i+1) + ": ");
sales[i] = scan.nextInt();
}
System.out.println("\nSalesperson Sales");
System.out.println("--------------------");
// Add your code initialize the values of some variables you declared before //
sum=0;
int max=0;
int min=0;
for (int i=0; i<sales.length; i++)
{
System.out.println(" " + (i+1) + "\t\t" + sales[i]);
sum += sales[i];
}
// Add your code. Please print out Sum, Average Sale, MaxSale by Whom, MinSlae by Whom...
// Get a value from the user and search for sale person whose sale exceed this value
System.out.println();
System.out.print("Enter a sales amount: ");
amount = scan.nextInt();
// Add your code here. Search for sales whose value exceed the above value. Print sale person index and amount
// print the total number of sales person whose sales exceed the above value.
}
In: Computer Science
33. True or False. The hormones involved in the hypothalamic are non-tropic in nature
answer quickly please
In: Biology
In: Computer Science
STEP 1: In the discussion, write a post responding to both of the following prompts:
Think of something you’ve learned so far in this course. Use one of the mnemonics or memory tricks you learned about in this module to help you remember a psychological concept. Explain your memory aid in a sentence or two.
In at least 100 words, describe one of your earliest childhood memories and explain it in the context of what you learned in this module. How was it encoded, stored, and retrieved, and has it fallen prey to any memory failure?
In: Psychology
The Startracks corporation is considering the purchase of new equipment to replace some old, existing equipment. The old equipment is fully depreciated and has a current market value of $1.2M. The new equipment costs $10.4M and will be depreciated using the 5 year MACRS class. The equipment is used to produce items with constant annual revenues of $18M. Current costs (using the old equipment) are $3M per year. The new equipment will not change the expected revenues (they will remain at $18M per year), but will allow the company to cut costs by $1M per year. The project is expected to last for 4 years, at which time the new equipment would be worth $6.0M. If the old equipment is kept, it will be worthless in 4 years. The company's marginal tax rate is 35%. The company is financed with $50M of preferred stock and $150M of common stock. The preferred stock has a current value of $20 and pays constant dividends of $2 annually. The expected return on the common stock is 14.4%. Should the project be accepted?
In: Finance
Gildan Limited is a clothing manufacturer specializing in sustainable lady’s fashion. The company has been in operation for ten years and during that time has built up a loyal and expanding customer base. Gildan Limited has three signature lines, Tops (shirts and Blouses), Bottoms (skirts and pants) and a Suits, all produced from organically grown and dyed linen fabric. Successful marketing and sales of these garments has resulted in the company exceeding full capacity at its current manufacturing base in Newton. Consequently, the directors are considering expanding production capacity over the next few years and are examining a number of possibilities. However, for the current year the company has a total of 15,000 machine hours and 20,000 direct labour hours available for production at its Newton manufacturing base. Production and sales details relating to the signature garments are shown below:
|
|
Tops |
Bottoms |
Suits |
|
Direct material (linen) @$6 per meter |
1.5 m |
1.25 m |
2.5 m |
|
Direct labor@ $12per hour |
0.25 hrs |
0.25 hrs |
0.5 hours |
|
Variable overhead @ 150% of direct labor cost |
|
|
|
|
Machine hours required |
0.3 hrs |
0.2hrs |
0.25 hrs |
|
Sales demand units (annual) |
30,000 |
18,000 |
15,000 |
|
Selling price per unit |
$ 54.00 |
$80.00 |
$105.00 |
|
|
|
|
|
Additional Information
Budgeted fixed manufacturing overheads per month $ 95,200
Budgeted selling and administrative cost per month $42,500
Required.
In: Accounting
If for some reason, an Astrophysics graduate decides to shift to Finance will he/she be in a better position (given his/her overspecialization) to make a transition compared to his/her counterparts who've been doing Analytical/Observational Astrophysics?
In: Physics
Analysis of Diversity
In: Psychology
Naked Economics: Wheelan
Briefly describe the process that this group uses for doing monetary policy (what is its target and how does it achieve that target)?
In: Economics
Q1)
lead ions can be precipitated from aqueous solutions by the addition of aqueous iodide: Pb2+(aq) + 2I-(aq) → PbI2(s)
Lead iodide is virtually insoluble in water so that the reaction appears to go to completion. How many milliliters of 1.180 M HI(aq) must be added to a solution containing 0.200 mol of Pb(NO3)2(aq) to completely precipitate the lead?
Q2) What is the molarity of a NaOH solution if 15.5 mL of a 0.220 M H2SO4 solution is required to neutralize a 25.0 mL sample of the NaOH solution?
Q3) A Sample of clay of mass 10.750g prepared to make ceramics was analyzed to determine its iron content.
The clay was washed with hydrochloric acid, and the iron was converted into iron(II) ions. The resulting solution was titrated with cerium(IV) sulfate solution.
Fe2+(aq) + Ce4+(aq) Fe3+(aq) + Ce3+(aq)
In the titration, 13.45mL of 1.340M Ce2SO4 was needed to reach the
stoichiometric point. What is the mass percentage of iron in the
clay?
In: Chemistry
Why is it necessary to use deionized water when testing the conductivity of aqueous solutions?
In: Chemistry
Part A (1.5 pts) Circle the letter of the phrase that most accurately completes the sentence.
When the current in the circuit below increases from 0.50 Io to Io the emf induced in the inductor acts in the:
the same direction as ?? and the energy stored in the inductor is 2x the initial value
the opposite direction to ?? and the energy stored in the inductor is 2x the initial value.
the same direction as ?? and the energy stored in the inductor is 4x the initial value.
the opposite direction to ?? and the energy stored in the inductor is 4x the initial value.
In: Physics
Consider a 10 year bond which pays 6% coupon annually and has a yield-to-maturity of 7%. How much would the price of bond change if investors required return increases to 8% per year?
|
decrease by approximately $64 |
||
|
decrease by approximately $52 |
||
|
increase by approximately $64 |
||
|
increase by approximately $54 |
In: Finance