Questions
The market portfolio has expected return of 12% and risk of 19%, and the risk free...

The market portfolio has expected return of 12% and risk of 19%, and the risk free rate is 5%. According to the capital market line (the line that connects the risk free rate to efficient frontier), what is the portfolio weight for the risky market portfolio if an investor wants to achieve 8.5% return? What about 16.2%? And 19% return?

In: Finance

What are some ways to improve health literacy in the healthcare setting? Explain each point.

What are some ways to improve health literacy in the healthcare setting?

Explain each point.

In: Nursing

What is rent-seeking? What are some of the effects of rent-seeking on an economy? Is rent-...

What is rent-seeking? What are some of the effects of rent-seeking on an economy? Is rent- seeking thought to be efficiency increasing or reducing?

In: Economics

Semester 2019 Java Programming Project 3: Loops, Strings, and Character Methods Having a secure password is...

Semester 2019
Java Programming Project 3: Loops, Strings, and Character Methods


Having a secure password is a very important practice, particularly when much of our personal information is stored online.

Please write a program that validates a new password, following these 4 rules:

The password must be at least 8 characters long.
The password must have at least one upper case letter.
The password must have at least one lower case letter.
The password must have at least one digit.
1) Your program should ask for a password, and then check first to see if the password is valid (i.e., conforms to the specifications outlined above.) If not, the program should allow the user to continue to enter passwords until s/he enters a valid password.

2) Then your program should confirm the password by requesting that the user enter the password again, and verify that the two match. If they don't match, allow the user to try it again (for a total of 3 tries only).

You will need a minimum of two methods, one to confirm the two passwords, and at least one (or more) to check to see if the password meets the 4 required specifications outlined above.

Carefully examine and follow ALL the program requirements. Make sure you use prologue comments for your program, including prologue comments for each of your methods. You will find both the Java String methods as well as the Character Class Methods immensely helpful for this Lab. Please use comments as well for any part of your code that may not be self-explanatory or may require some additional documentation.

You will find both the Java String methods as well as the Character Class Methods immensely helpful for this Lab.

SUBMISSION GUIDELINES:

1) Please write and submit an algorithm (in class) to help you with the design phase of this lab.

2) Submit a hard copy of your Java program (in class).

3) Attach your java program online in the Assignments tool. Go to Assessments-->Assignment --> Java Programming Project 3.

4) Submit a hard copy of program output or output screen shots of your program in action illustrating its functionality. You should show at least 3 program runs.


In: Computer Science

6.2     Complete the following table. Assume that the real interest rate is 3% per year, and inflation...

6.2     Complete the following table. Assume that the real interest rate is 3% per year, and inflation is expected to be constant at 2% per year. Recall that nominal cash flows must be discounted using nominal rates, and real cash flows must be discounted using real rates.                                                      

Year

Nominal cash flow

Real cash flow

0

–100,000

–100,000

1

+ 12,000

2

+22,000

3

+15,000

4

+10,000

Net present value

Discount rate

3%

Note that present values are taken at time 0, at which point real cash flows and nominal cash flows are the same, because there is no time for inflation to affect the cash flows.

This implies that the present values of the two series of cash flows should be exactly the same.

Hint: You may want to recall the $1 chocolate bar example from question 5.2 to assist you with calculating the real cash flows.

Note that you can use the CF function of the Texas Instruments BA II Plus calculator (similar on the HP 10BII series and Sharp EL738 series financial calculators) to calculate the NPV of these cash flows. See your user’s manual or a YouTube video to learn how to use this function.


In: Finance

1. Explain how liminality, cultural chasm and white supremacy are inter-related. 2. Start to connect with...

1. Explain how liminality, cultural chasm and white supremacy are inter-related.

2. Start to connect with the reading. Use ONE example of your read material and connect it to one of the term. How is the term being described in the reading. You can't use bell hooks and cultural chasm because I already provided you an example in the online lecture. BUT you can use another one from hooks' essay if you find it.

file:///Users/Irene/Downloads/Straightening%20Our%20Hair.pdf

file:///Users/Irene/Downloads/_The%20Myth%20of%20the%20Latin%20Woman_%20_%20Just%20Met%20a%20Girl%20Named%20Maria.pdf

3. Start thinking of experiential factors that contribute to the liminal state of Judith Ortiz Cofer and bell hooks. Identify 1 for EACH of the authors. Demonstrate that you read.

In: Psychology

Use the following information on Filmore Corporation to calculate its WACC. 10,000 bonds with face value...

Use the following information on Filmore Corporation to calculate its WACC. 10,000 bonds with face value of $1,000 matures in 5 years, has 8% coupon rate, pays coupons semiannually, and currently sells for $1,050. 1,000,000 common shares sell for $40 per share. The dividend next year will be $2, and dividends are expected to grow at 6% constantly. It has no preferred stock. Its tax rate is 35%. What is Filmore Corporation's WACC? show the steps

In: Finance

What is the effect on the public sector during a boom period? (surpluses increase/decrease? Deficits increase/decrease?)

What is the effect on the public sector during a boom period? (surpluses increase/decrease? Deficits increase/decrease?)

In: Economics

One of your friends has an awful writing style: he almost never starts a message with...

  1. One of your friends has an awful writing style: he almost never starts a message with a capital letter, but adds uppercase letters in random places throughout the message. It makes chatting with him very difficult for you, so you decided to write a plugin that will change each message received from your friend into a more readable form.

Implement a function that will change the very first symbol of the given message to uppercase, and make all the other letters lowercase.

2. Implement a function that will compute the area of a triangle.

In: Computer Science

Hudson Corporation will pay a dividend of $3.40 per share next year. The company pledges to...

Hudson Corporation will pay a dividend of $3.40 per share next year. The company pledges to increase its dividend by 7.70 percent per year indefinitely.

  

If you require a return of 17.30 percent on your investment, how much will you pay for the company's stock today?

In: Finance

You have been assigned to a development team that is building software that will be used...

You have been assigned to a development team that is building software that will be used to control the operations of a bicycle rental store. A rental store has a limited number of vehicles that can be managed. A bicycle rental store must maintain information about how many vehicles are available for rental. The bicycle rental store must provide publicly available methods to allow vehicles to be added and removed from it. The rental store should also provide publicly available methods that reports its capacity. An attempt to add or remove the vehicle other than it’s capacity should print the message letting user know that he/she can’t add or delete the vehicle (Hint: use “if” condition to check the number of vehicles. They shouldn’t be more that 5/5 each to add and less than 1 to delete). At the moment there are two distinct types of vehicles: bicycle and quadricycle (four-wheel bicycle). Every vehicle has a company code, a fun name, number of wheels and a rental price. The bicycle has two wheels whereas quadricycle has four. Define the Java classes that are required to implement the functionality that is described above. Be sure to use object-oriented principles in your Java code. Hints • Vehicle class, Bicycle class, Quadricycle class, RentalStore class. • Bicycle class and Quadricycle class inherits extends from Vehicle class • RentalStore class will have methods to show the total number of vehicles, add/delete Bicycle and add/delete Quadricycle • Rental class should have ArrayList • In general every class should have attributes, constructor and it’s methods. • Besides RentalStore class, all other classes should have toString() method . • Create TestClass that have Main() method. Bicycles: company code 0001, a fun name ( your choice), number of wheels : 2 and a rental price 150 company code 0002, a fun name ( your choice), number of wheels : 2 and a rental price 110 company code 0003, a fun name ( your choice), number of wheels : 2 and a rental price 50 company code 0004, a fun name ( your choice), number of wheels : 2 and a rental price 250 company code 0005, a fun name ( your choice), number of wheels : 2 and a rental price 90 quadricycle : company code 0011, a fun name ( your choice), number of wheels : 4 and a rental price 250 company code 0012, a fun name ( your choice), number of wheels : 4 and a rental price 110 company code 0013, a fun name ( your choice), number of wheels : 4 and a rental price 210 company code 0014, a fun name ( your choice), number of wheels : 4 and a rental price 210 company code 0015, a fun name ( your choice), number of wheels : 4 and a rental price 190 For this scenario, we will have 5 bicycles and 5 quadricycles (total of 10 vehicles). Add all those vehicles to an ArrayList. Find bicycles with price less than $100 and delete all of them. Find quadricycles with price less than $200 and delete all of them. At last, show to total number of remaining vehicles with their details.

In: Computer Science

According to Psychology: From Inquiry to Understanding (3rd ed.), describe a time when your sympathetic nervous...

According to Psychology: From Inquiry to Understanding (3rd ed.), describe a time when your sympathetic nervous system kicked into gear and you experienced the fight-or-flight reaction. What did it feel like? “The Autonomic Nervous System” in Unit 2 of the textbook, pages105 - 106

In: Psychology

(a) Select all of the correct statements about reaction rates from the choices below. The lower...

(a) Select all of the correct statements about reaction rates from the choices below.

The lower the rate of a reaction the longer it takes to reach completion.


A balanced chemical reaction is necessary to relate the rate of reaction to the concentration of a reactant.


The rate of a fast step has more effect on the overall reaction rate than the rate of a slow step.


Solid catalysts increase reaction rates as their surface areas increase.


Slow reactions can be speeded up by raising the temperature.


Reactions involving very unstable combinations of chemicals have small rate constants.


Reaction rates always increase as masses of solid reactants increase.

In: Chemistry

Your division is considering two projects with the following cash flows (in millions): 0 1 2...

Your division is considering two projects with the following cash flows (in millions):

0 1 2 3
Project A -$16 $7 $9 $10
Project B -$26 $14 $20 $11

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.

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.

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.

What are the projects' IRRs assuming the WACC is 5%? Do not round intermediate calculations. Round your answer to two decimal places.

What are the projects' IRRs assuming the WACC is 10%? Do not round intermediate calculations. Round your answer to two decimal places.

What are the projects' IRRs assuming the WACC is 15%? Do not round intermediate calculations. Round your answer to two decimal places.

If the WACC was 5% and A and B were mutually exclusive, which project would you choose? (Hint: The crossover rate is 48.57%.)

If the WACC was 10% and A and B were mutually exclusive, which project would you choose? (Hint: The crossover rate is 48.57%.)

If the WACC was 15% and A and B were mutually exclusive, which project would you choose? (Hint: The crossover rate is 48.57%.)

Thank you.

In: Finance

2.90 moles of an ideal gas with Cv,m = 3R/2 undergoes the transformations described in the...

2.90 moles of an ideal gas with Cv,m = 3R/2 undergoes the transformations described in the following list from an initial state described by T=310. K and P = 1.00 bar.

Part 1) The gas is heated to 725K at a constant external pressure of 1.00 bar. calculate q, w, delta U, delta H and delta S for this process.

Part 2) The gas is heated to 725 K at a constant volume corresponding to the initial volume. calculate q, w, delta U, delta H, delta S for this process

Part 3) the gas undergoes a reversible isothermal expansion at 310.K until the pressure is one third of its initial value. calculate q, w, delta U, delta H, delta S for this process

In: Chemistry