Questions
Jorge Rios's family is without health insurance. He works two jobs, neither of which provides health...

Jorge Rios's family is without health insurance. He works two jobs, neither of which provides health insurance. Her earns a total income of slightly above the level which would make his eligible for Medicaid in his state. Jorge was born in the U.S., but his brother, who lives with the family, is undocumented. Jorge is now trying to pay off the bills for his brother's treatment when he was recently seen in the emergency department. How is the family affected by the issues in the U.S. health insurance systems and what are some of the options to obtain health care or health care insurance?

In: Nursing

Write a program that prompts the user to enter a file name, then opens the file...

Write a program that prompts the user to enter a file name, then opens the file in text mode and reads names. The file contains one name on each line. The program then compares each name with the name that is at the end of the file in a symmetrical position. For example if the file contains 10 names, the name #1 is compared with name #10, name #2 is compared with name #9, and so on. If you find matches you should print the name and the line numbers where the match was found.

While entering the file name, the program should allow the user to type quit to exit the program.

If the file with a given name does not exist, then display a message and allow the user to re-enter the file name.

The file may contain up to 100 names.

You can use an array or ArrayList object of your choosing, however you can only have one array or ArrayList.

Input validation:

a) If the file does not exist, then you should display a message "File 'somefile.txt' is not found." and allow the user to re-enter the file name.

b) If the file is empty, then display a message "File 'somefile.txt' is empty." and exit the program.

Hints:

a) Perform file name input validation immediately after the user entry and use a while loop .

b) Use one integer variable to count names in the file and another one for counting matches.

d) You can use either a while loop or a for loop to find the matches.

In: Computer Science

Heller is introducing a new product with sales of $10,000,000 per year and a Cost of...

Heller is introducing a new product with sales of $10,000,000 per year and a Cost of Goods Sold (COGS) of $7,500,000 per year. They expect sale to grow at 5% per year for four years, then shrink at 30% per year for two years (7 years total), and then sales will stop. The 75% Cost of sales assumptions is expected to remain constant. The Heller Corporation has the following net operating working capital investment expectations for the beginning of each year of the project. At the end of the project the Net Operating Working Capital Investment will no longer be required.

Receivables: 46 days Next Year’s Sales

Inventory: 98 days COGS

Payables: 35 days COGS

(Net Operating Working Capital Analysis)

8. Calculate the annual cash flow required for the resulting Net Operating Working Capital investment. I recommend you complete this analysis in Excel.

9. If the Opportunity Cost of Capital is 9% what is the impact of the required Net Operating Working Capital Investment on the NPV of the project?

10. How much value (measured by the impact on NPV) could they create by reducing the Inventory they hold to 60 days assuming that sales are unchanged.

In: Finance

What four amendments to the Constitution are specifically related to criminal procedure? In what ways do...

What four amendments to the Constitution are specifically related to criminal procedure? In what ways do these amendments impact the courts?

In: Psychology

DIscuss why the theme of universality is important in Whitman's Song of Myself and identify a...

DIscuss why the theme of universality is important in Whitman's Song of Myself and identify a particular passage where you believe that importance is most effectively demonstrated. (This question is not asking WHAT universality is. Your answer will demonstrate that knowledge. It's asking WHY the theme is important in Song of Myself.)

In: Psychology

Explain how the BJTs are used as switches to implement the NAND and NOR gates respectively.

Explain how the BJTs are used as switches to implement the NAND and NOR gates respectively.

In: Electrical Engineering

Can you describe bank Fed Funds Bought and bank Fed Funds Sold? These are actual balance...

Can you describe bank Fed Funds Bought and bank Fed Funds Sold? These are actual balance sheet accounts on bank financial statements. Terrible name for balance sheet accounts!!

In: Finance

Maria is the sole proprietor of an antique store that is located in a rented warehouse....

Maria is the sole proprietor of an antique store that is located in a rented warehouse. The business has a          $ 200,000 outstanding loan with the local bank but no other debt obligations. Last week, the loan, which has a monthly payment of $ 1,500, was not paid. There are no specific assets pledged as security for the loan. Due to a sudden and unexpected downturn in the economy, the store is just unable to generate sufficient funds to pay the over-due loan payment as well as the payments due over the next two months.

Maria is considering selling all of the lighting fixtures in her building which will raise enough funds to make three loan payments. The bank has suggested to Maria that she sell off all her inventory. And it appears that the bank has withdrawn at least one loan payment from Maria’s personal bank account.

1) Can you suggest a strategy to help Maria with the sale of the lighting fixtures?

2) What is the impact of her selling off all her inventory?

3) Has the bank acted improperly by withdrawing the missed loan payment from Maria’s personal account given that this loan was made to her business ?

In: Finance

Why are light bulbs in New Year's Christmas trees usually switched on sequentially?

Why are light bulbs in New Year's Christmas trees usually switched on sequentially?

In: Physics

A nitric acid solution flows at a constant rate of 6L/min into a large tank that...

A nitric acid solution flows at a constant rate of 6L/min into a large tank that initially held 200L of a 0.5% nitric acid solution. The solution inside the tank is kept well-stirred and flows out of the tank at a rate of 8L/min. If the solution entering the tank is 20% nitric acid, determine the volume of nitric acid in the tank after t min. When will the percentage of nitric acid in the tank reach 10%? (Ans: (0.4)(100-t)-(3.9x10-7 )(100-4)4 L; 19.96min)

In: Advanced Math

CH 9 ITEM 11 A frictionless pulley has the shape of a uniform solid disk of...

CH 9 ITEM 11

A frictionless pulley has the shape of a uniform solid disk of mass 2.90 kg and radius 10 cm. A 1.70 kg stone is attached to a very light wire that is wrapped around the rim of the pulley, and the system is released from rest.

Part A

How far must the stone fall so that the pulley has 3.00 J of kinetic energy?

Part B

What percent of the total kinetic energy does the pulley have?

In: Physics

Question 2 Read the extract below and answer the question that follow. Strawbwrry international wishes to...

Question 2

Read the extract below and answer the question that follow.

Strawbwrry international wishes to conduct a research study using their employees as key participants. The organisation maintains a global footprint and employs over 25 000 employees at several branches worldwide.

2.1 Discuss the reasons why sampling such a population is necessary (10)

2.2 Describe four types of non-probability sampling. (8)

2.3 Critically analyze the principle of sampling. (12)

In: Operations Management

Write a Java program to print the sum (addition), multiplication, subtraction, and division of two numbers....

Write a Java program to print the sum (addition), multiplication, subtraction, and division of two numbers.

Start your code by copying/pasting this information into an editor like notepad, notepad++, or IDLE:

public class Main {

public static void main(String[] args) {

// Write your code here

}

}

Sample input:

Input first number: 125
Input second number: 24

Sample Output:
125 + 24 = 149
125 - 24 = 101
125 x 24 = 3000
125 / 24 = 5

*Please include what system you used to write this. My course is not very descriptive, thank you!

In: Computer Science

(CO A) Describe any two of the three major characteristics of the fifth merger wave of...

(CO A) Describe any two of the three major characteristics of the fifth merger wave of the 1990s.

In: Finance

Do standing waves explain why electron orbitals are quantized?

Do standing waves explain why electron orbitals are quantized?

In: Physics