What is the difference between ‘fiduciary money’ and ‘fiat money?’
What happened to gold in 1933/1934 in the US?
In: Finance
and why?
2: Store two values 0x80 and 0x08 in in file register locations 0x40 and 0x41 respectively.
Subtract content of location 0x41from 0x40 and store the result in register 0x43.
In: Electrical Engineering
In: Operations Management
If we sensed and attended equally to each stimulus in the world, the amount of information would be overwhelming. What sensory and perceptual processes help us lessen the din? List and describe at least three sensory or perceptual processes that help to filter information. Describe situations where the sensory and perceptual processes you discussed would be beneficial.
In: Psychology
In: Psychology
Anne and Bill plan to form a limited liability company to engage
in the business of developing and marketing computer software. Only
Anne and Bill will have authority to act on behalf of the LLC.
Because of the limited powers that the investor-members will be
granted, Anne and Bill think it best that the investors be
permitted to sell or assign their membership interests if they so
desire. Of course, Anne and Bill want the business of the LLC to be
uninterrupted by the death, bankruptcy, etc., of an
investor-member.
Question: Will the LLC be taxed as a corporation if organized in
the manner contemplated by Anne and Bill?
In: Accounting
Describe the relationships among the structure, management and financing of terrorist organizations. Describe the impact of each upon planning and controlling a terrorist campaign.
In: Psychology
Discuss three challenges faced when auditing a cloud environment. (200-300 words)
In: Computer Science
Can you solve and send me the original code which I can copy and paste plz. Thank you.
Kahn's Algorithm
Implement Kahn's Algorithm for giving a topological ordering of a graph as discussed in class. The input graph will be in adjacency list format.
1. Count the in-degree (number of edges ending at) each vertex.
2. Create a queue of nodes with in-degree 0.
3. While the queue is not empty:
a. Add the first element in the queue to the ordering.
b. Decrement the in-degree of each of the first element’s neighbors.
c. Add any neighbors that now have in-degree 0 to the queue.
d. Remove the first element from the queue.
4. If the ordering doesn't contain all nodes then the graph had a cycle and we return None
5. Else we return the ordering
graph = [
[1, 3],
[],
[3, 6, 7],
[6],
[],
[],
[],
[5, 4],
]
order = topological(graph)
print(order)
[0, 2, 1, 3, 7, 6, 4, 5] # one POSSIBLE ordering
order.index(0) < order.index(3)
order.index(0) < order.index(1)
order.index(2) < order.index(3)
order.index(2) < order.index(6)
order.index(2) < order.index(5)
order.index(3) < order.index(6)
order.index(7) < order.index(5)
from collections import deque
#complete following code
def topological(graph):
in_deg = [0 for _ in range(len(graph))]
for node1 in range(len(graph)):
for node2 in graph[node1]:
in_deg[node2] += 1
queue = deque()
"""
Iterate over all the nodes and append the nodes with in-degree 0 to
the queue
"""
# your code here
ordereing = []
while len(queue) > 0:
current_node = queue.popleft()
ordereing.append(current_node)
for neighbor in graph[current_node]:
in_deg[neighbor] -= 1
"""
If this neighbor in-degree now becomes 0, we need to append it to
the queue
"""
# your code here
"""
If we couldn't process all nodes, this means there was a cycle in
the graph
and the graph wasn't a DAG.
"""
if len(ordereing) != len(graph):
return None
return ordereing
order.index(7) < order.index(4)
In: Computer Science
If the spot rate for Swiss Francs versus US Dollars is one SF equals 1.1 US $, and the annual interest rate on fixed rate one-year deposits of SF is 0.5% and for US$ is 2%, what is the nine-month forward rate for one dollar in terms of SF? Assuming the same interest rates, what is the 18-month forward rate for one SF in US$? Is this an indirect or direct rate? If the forward rate is an accurate predictor of exchange rates, in this case will the SF get stronger or weaker against the US dollar? What does this indicate about the market’s inflation expectations in Switzerland compared to the US?
In: Finance
A monoprotic acid with a Ka of 7.79E10-5 has a partition coefficient of 3.4 (favoring octanol) when distributed between water and octanol. Find the formal concentration of the acid in each phase when 100 mL of 0.10 M aqueous acid is extracted with 31 mL of octanol at (a) pH 4.00 and (b) pH 9.00.
In: Chemistry
Your division is considering two projects with the following cash flows (in millions):
0 | 1 | 2 | 3 |
Project A | -$25 | $5 | $10 | $17 |
Project B | -$20 | $10 | $9 | $6 |
What are the projects' NPVs assuming the WACC is 5%? Enter your answer in millions. For example, an answer of $10,550,000 should be entered as 10.55. Negative values, if any, should be indicated by a minus sign. Do not round intermediate calculations. Round your answer to two decimal places.
Project A: $ million
Project B: $ million
What are the projects' NPVs assuming the WACC is 10%? Enter your answer in millions. For example, an answer of $10,550,000 should be entered as 10.55. Negative values, if any, should be indicated by a minus sign. Do not round intermediate calculations. Round your answer to two decimal places.
Project A: $ million
Project B: $ million
What are the projects' NPVs assuming the WACC is 15%? Enter your answer in millions. For example, an answer of $10,550,000 should be entered as 10.55. Negative values, if any, should be indicated by a minus sign. Do not round intermediate calculations. Round your answer to two decimal places.
Project A: $ million
Project B: $ million
What are the projects' IRRs assuming the WACC is 5%? Do not round intermediate calculations. Round your answer to two decimal places.
Project A: %
Project B: %
What are the projects' IRRs assuming the WACC is 10%? Do not round intermediate calculations. Round your answer to two decimal places.
Project A: %
Project B: %
What are the projects' IRRs assuming the WACC is 15%? Do not round intermediate calculations. Round your answer to two decimal places.
Project A: %
Project B: %
If the WACC was 5% and A and B were mutually exclusive, which project would you choose? (Hint: The crossover rate is 7.81%.)
-Select-Project AProject BNeither A nor BItem 13
If the WACC was 10% and A and B were mutually exclusive, which project would you choose? (Hint: The crossover rate is 7.81%.)
-Select-Project AProject BNeither A nor BItem 14
If the WACC was 15% and A and B were mutually exclusive, which project would you choose? (Hint: The crossover rate is 7.81%.)
-Select-Project AProject BNeither A nor B
11.10
In: Finance
Total plasma volume is important in determining the required plasma component in blood replacement therapy for a person undergoing surgery. Plasma volume is influenced by the overall health and physical activity of an individual. Suppose that a random sample of 46 male firefighters are tested and that they have a plasma volume sample mean of x = 37.5 ml/kg (milliliters plasma per kilogram body weight). Assume that σ = 7.00 ml/kg for the distribution of blood plasma.
(a) Find a 95% confidence interval for the population mean blood plasma volume in male firefighters. What is the margin of error? (Use 2 decimal places.)
lower limit | |
upper limit | |
moe |
(d) Find the sample size necessary for a 95% confidence level
with maximal/marginal error of estimate E = 2.80 for the
mean plasma volume in male firefighters.
In: Math
1.
Allen is a 46 year old truck driver who smokes an average of one pack per day. He eats
on the run for the majority of his meals, which consist of cheese steak subs, meat lovers
pizzas, vanilla protein shakes with fresh strawberries, Chik Fila crispy chicken
sandwiches, fries, and side salads, water, and diet colas. He is currently on a low dose of
lisinolopril for his blood pressure. He is a sedentary individual with a blood pressure of
135/88, total cholesterol of 220 and HDL cholesterol of 32. What is his calculated 10-
year risk, what lifestyle factors could he modify to lower his score and which risk factors
does he have no control over? Please show all work.
2.
Karen is a 67-year old mother of three adult children and grandmother of five
grandchildren. She is on a mild dose of Lasix for borderline elevated blood pressure. One
of her favorite hobbies is gardening during seasonal periods and she brisk walks for 30-
45 minutes three times per week. She has a guilty pleasure for two scoops of mint
chocolate chip and cookies and cream ice cream three times a week, however, she is
drinking two liters of water daily, eats 7-8 servings of fresh fruits and vegetables daily,
whole grains and consumes beans, lentils, soy protein, peanut butter, tree nuts, salmon,
tuna and occasional eggs for her protein options as a pescatarian. She is a non-smoker
with total cholesterol of 184, HDL of 62 and blood pressure of 120/70. What is her
calculated 10-year risk, what lifestyle factors could she modify to lower her score and
which risk factors does she have no control over? Please show all work.
Health Literacy Assessment
1.
Choose one volunteer and perform a Health/Nutrition literacy assessment from the
Newest Vital Sign (NVS) tool on page 414 of your text (Munoz and Bernstein) OR one
of the validated tools within the
http://www.healthliteracy.bu.edu/
website (preferably
one of the nutrition/food label literacy-based tools).
A.
Define health literacy and explain its importance.
B.
Upload the questionnaire and score results as a separate file.
C.
Obtain additional data on the volunteer’s gender, age, race/ethnicity, education level,
geographic residence, marital status, # of children, medical history (optional).
D.
Discuss what your experience with completing this exercise was like, your findings,
and ways in which the client’s demographic information may or may not have
influenced the results.
In: Psychology
Olsen Outfitters Inc. believes that its optimal capital structure consists of 70% common equity and 30% debt, and its tax rate is 25%. Olsen must raise additional capital to fund its upcoming expansion. The firm will have $2 million of retained earnings with a cost of rs = 10%. New common stock in an amount up to $7 million would have a cost of re = 12.5%. Furthermore, Olsen can raise up to $4 million of debt at an interest rate of rd = 9% and an additional $4 million of debt at rd = 13%. The CFO estimates that a proposed expansion would require an investment of $3.6 million. What is the WACC for the last dollar raised to complete the expansion? Round your answer to two decimal places.
In: Finance