Write at least 5 sentences on the following question:
What are the main challenges in today's society that limit nuclear families from thriving?
In: Psychology
Explain how you reference in-text and in bibliography giving an
example;
1 Journal article (2)
2 Internet source (2)
3 Book source (2)
4 Periodical (2)
5 Report (2)
6 Conference proceeding (2)
7 Newspaper article (2)
In: Operations Management
In: Psychology
The Bruin's Den Outdoor Gear is considering a new 6-year project to produce a new tent line. The equipment necessary would cost $1.33 million and be depreciated using straight-line depreciation to a book value of zero. At the end of the project, the equipment can be sold for 15 percent of its initial cost. The company believes that it can sell 24,500 tents per year at a price of $66 and variable costs of $26 per tent. The fixed costs will be $415,000 per year. The project will require an initial investment in net working capital of $201,000 that will be recovered at the end of the project. The required rate of return is 10.9 percent and the tax rate is 34 percent. What is the NPV?
In: Finance
Problem:
You will write a program to compute some statistics based on monthly average temperatures for a given month in each of the years 1901 to 2016. The data for the average August temperatures in the US has been downloaded from the Climate Change Knowledge Portal, and placed in a file named “tempAugData.txt”, available on the class website. The file contains a sequence of 116 values. The temperatures are in order, so that the first one is for 1901, the second is for 1902, and so on through 2016.
The statistics you should compute in your program are:
• The average of the monthly average temperatures for the entire time period.
• The number of years that the monthly average reached at least X degrees where X is a value input from the user. These years should also be displayed to the screen.
• The maximum monthly average temperature for the time period and in what year it occurred.
• The minimum monthly average temperature for the time period and in what year it occurred.
Input: Your program should ask the user for the name of the file, and then open that file for input. It should then ask the user for a boundary temperature (the X in the second bullet above) that is used to calculate some of the statistics. Processing: Compute the statistics requested above.
Output: Display the statistics, labeled, and with the temperatures formatted to 1 decimal place. Also output the count of the years above X before outputting the list of the years.
Sample output:
Please enter the name of the temperature data file: tempAugData.txt Please enter the boundary temperature: 68.0
Climate Data statistics: Average temperature: 66.2
Years that averaged at least 68.0 degrees: 7 1936 1995 2003 2007 2010 2011 2016
Maximum average temperature: 68.9 occurred in 2007
Minimum average temperature: 63.9 occurred in 1927
Additional Requirements:
• Your program must compile and run, otherwise you will receive a 0.
• Your program should test for file open errors.
• I recommend temporarily echoing the input from the file to the screen (using cout) to be sure you are reading the input correctly into your array.
• You should have many separate loops in your program. Do not try to compute everything in one single loop.
• For partial credit, implement some subset of the features completely. This will probably lead to a better score than implementing every feature poorly
USING ARRAYS.
In: Computer Science
Password Checking
Software to reset passwords often requires the user to enter the
password twice, checking to make sure it was entered the same way
both times. Write a program in Python that contains
functions/methods in it that can verify that the two passwords
entered are correct. Your project should contain a method that asks
the user to enter a password twice, then either tell the user that
the two entries were not the same and then start the process over
again. Or, if they are the same, tell the user that the new
password was accepted.
Additionally, the user is required to enter a password that meets specific security requirements. Proper Passwords are required to follow these rules:
Your task is to create a project to verify whether or not a prospective proper password meets these requirements and that the user has entered the correct password in twice. Hint, a modular solution to this assignment will be the most efficient approach to meeting the requirements of this project
The project should identify to the user the types of rule violations that are contained in an improperly entered password
The project should use a modular solution using user-defined functions
In: Computer Science
Q1: Server Design Models: (explain clearly) a. For a multi-threaded server, describe the advantages of adopting the many-to-one threading model. b. For a multi-threaded server, describe the advantages of adopting the one-to-one threading model.
In: Computer Science
Write a C++ code that keeps reading integer numbers (x) until a negative number is entered. Every time x is entered, the program does the following: calculates and prints the product of odd numbers. calculates and prints the count of numbers that ends with 19. Example, 19, 3219, 50619,....etc calculates and prints the percentage of the numbers that contain 3 digits exactly, such as, 301, 500, 206,...etc.
In: Computer Science
1.Define strategic leadership and describe top-level managers’ importance.
In: Operations Management
The average commute time in Oregon is 24 minutes, with a standard deviation of 4 minutes. For the 3 drivers in my household, what is the probability that our average commute time is over 27 minutes per day?
In: Math
In: Psychology
In 1000 words How the Covid-19 Quarantine has impacted each of the 4P's of the Marketing Mix?
In: Operations Management
Small Appliances Division Cleaning Products Division
Sales $34,670,000 $31,320,000
Operating income 2,773,600 1,252,800
Operating assets, January 1 6,394,000 5,600,000
Operating assets, December 31 7,474,000 6,000,000
Forchen, Inc., requires an 8 percent minimum rate of return.
For the Small Appliances Division, calculate:
a. Average operating assets
b. Margin
c. Turnover
d. Return on investment (ROI)
2. For the Cleaning Products Division, calculate:
a. Average operating assets
b. Margin
c. Turnover
d. Return on investment (ROI)
3. What if the minimum required rate of return was 9 percent? How would that affect the residual income of the two divisions?
In: Accounting
FINANCIAL LEVERAGE EFFECTS - Hello! This is all one question, thank you very much in advance! Will thumbs up for answer! :D
The Neal Company wants to estimate next year's return on equity (ROE) under different financial leverage ratios. Neal's total capital is $13 million, it currently uses only common equity, it has no future plans to use preferred stock in its capital structure, and its federal-plus-state tax rate is 40%. The CFO has estimated next year's EBIT for three possible states of the world: $4.1 million with a 0.2 probability, $2.9 million with a 0.5 probability, and $0.3 million with a 0.3 probability. Calculate Neal's expected ROE, standard deviation, and coefficient of variation for each of the following debt-to-capital ratios. Do not round intermediate calculations. Round your answers to two decimal places at the end of the calculations.
Debt/Capital ratio is 0.
RÔE = | % |
σ = | % |
CV = |
Debt/Capital ratio is 10%, interest rate is 9%.
RÔE = | % |
σ = | % |
CV = |
Debt/Capital ratio is 50%, interest rate is 11%.
RÔE = | % |
σ = | % |
CV = |
Debt/Capital ratio is 60%, interest rate is 14%.
RÔE = | % |
σ = | % |
CV = |
In: Finance
6.2_What is the meaning of the term busy waiting? What other kinds of waiting are there in an operating system? Can busy waiting be avoided altogether? Explain your answer.
7.4_Describe how deadlock is possible with the dining-philosophers problem.
Why is it necessary to have an atomic instruction for providing access to a critical section?
In: Computer Science