Demonstrate knowledge of methods to gather and organize information for a study.Identify research problems generated from the practice setting.

This assignment will allow you to review and critique a quantitative research article. The critique is an analysis of the article. Please use the questions in Chapter 5 of the Polit and Beck text (pg 102) titled “Guide to an Overall Critique of a Quantitative Research Article” to guide your analysis. Generally, 1-3 sentences are sufficient to answer each question depending on the question. You need to address each component thoroughly from the content of the article, providing rationale for each of the statements. If a research component is not addressed in the article, you must explain whether or not this is justified. As you dwell with your article, be sure to review quantitative article critique in Polit and Beck textbook found in Chapter 5. Be sure to include both an introduction and a conclusion in your paper. The paper should be no more than 7 pages excluding title and reference page. Critique study objectives, questions, and hypotheses in research reports.Demonstrate knowledge of methods to gather and organize information for a study.Identify research problems generated from the practice setting.Critique research problems and the purpose for a study.Critique literature reviews for relevance, currency, and multidisciplinary sources.

Discuss Pre-war Modernism and Utopia in Europe and America.

Please include an outline of the essay with sources. Create a discussion about European modernism and its utopian aims for massproduction and design. (Hint: Bauhaus, Le Corbusier, De Stijl) How did the notionof “utopia” in European modernism differ from American Art Deco pre-waridealism. Give examples of at least 3 modernist projects, art, graphics,photography (with artist, title, date)

What investment rate must the trust earn to break even on this arrangement?

Part AGiven the following cash inflow at the end of each year, what is the future value of this cash flow at 6%, 9%, and 15% interest rates at the end of the seventh year?Year 1$15,000Year 2$20,000Year 3$30,000Years 4 through 6$0Year 7$150,000Part BCounty Ranch Insurance Company wants to offer a guaranteed annuity in units of $500, payable at the end of each year for 25 years. The company has a strong investment record and can consistently earn 7% on its investments after taxes. If the company wants to make 1% on this contract, what price should it set on it? Use 6% as the discount rate. Assume that it is an ordinary annuity and the price is the same as present value.Part CA local government is about to run a lottery but does not want to be involved in the payoff if a winner picks an annuity payoff. The government contracts with a trust to pay the lump-sum payout to the trust and have the trust (probably a local bank) pay the annual payments. The first winner of the lottery chooses the annuity and will receive $150,000 a year for the next 25 years. The local government will give the trust $2,000,000 to pay for this annuity. What investment rate must the trust earn to break even on this arrangement?Part D Your dream of becoming rich has just come true. You have won the State of Tranquility’s Lottery. The State offers you two payment plans for the $5 million jackpot. You can take annual payments of $250,000 for the next 20 years or $2,867,480 today.a. If your investment rate over the next 20 years is 8%, which payoff will you choose?b. If your investment rate over the next 20 years is 5%, which payoff will you choose?c. At what investment rate will the annuity stream of $250,000 be the same as the lump sum payment of $2,867,480

How does our zoo compare to other zoos found in the US and worldwide?

note that during the Corona Virus School closure an alternate assignment would be to visit the Los Angeles zoo web site and list the varieties of primates currently at this facility. Are the varieties a good reflection of the diversity found in primates found on earth today? How does our zoo compare to other zoos found in the US and worldwide? This should be between four and five pages long.Our teacher wants us to look at the monkeys and primates listed in the los angeles zoo website and write about them. with the questions he asked above.

How does our zoo compare to other zoos found in the US and worldwide?

Please note that during the Corona Virus School closure an alternate assignment would be to visit the Los Angeles zoo web site and list the varieties of primates currently at this facility. Are the varieties a good reflection of the diversity found in primates found on earth today? How does our zoo compare to other zoos found in the US and worldwide? This should be between four and five pages long.Our teacher wants us to look at the monkeys and primates listed in the los angeles zoo website and write about them. with the questions he asked above.

Python Lists and Functions

Objective:The objective of this lab exercise is to give you practice in programming with one of Python’s most widely used “container” data types — the List (commonly called an “Array” in most other programming languages). More specifically you will demonstrate how to:Declare list objectsAccess a list for storing (i.e., writing) into a cell (a.k.a., element or component) and retrieving (i.e., reading) a value from a list cell/element/componentIterate through a list looking for specific values using a for…in loop repetition constructPass an entire list argument to a functionProcess a list parameter received by a functionDiscussion: For this exercise you will be simulating a Weather Station responsible for recording hourly temperatures and reporting on certain characteristics (e.g., average temperature) from your recordings. You will also be expanding on your experience in creating functions and passing them more complex parameters (i.e., complete list arguments – sometimes empty and sometimes full).Specifications:DDI&T a Python program to input, store, and process hourly temperatures for each hour of the day (i.e., 24 temperatures). Your program should be divided logically into the following parts:In function main() declare an empty List container: HourlyTemperatures = [] Pass the empty HourlyTemperatures list to a function,GetTemperatures(HourlyTemperatures) This function must interactively prompt for and input temperatures for each of the 24 hours in a day (0 through 23). For each temperature that is input, verify that its value lies in the range of minus 50 degrees and plus 130 degrees (i.e., validate your input values). If any value is outside the acceptable range, ask the user to re-enter the value until it is within this range before going on to the next temperature (HINT: use a nested loop (e.g., Python’s equivalent to a do-while loop) that exits only when a value in the specified range has been entered). Store each validated temperature in its corresponding element of the list container passed as a parameter to the function (Hint: Look at the ‘append(…)’ function that can be called on a list container).Next pass the filled list container to a function,ComputeAverageTemp(HourlyTemperatures) This function computes the average temperature of all the temperatures in the list and returns this average to the calling function.Finally, pass the filled list container and the computed average temperature to another function, DisplayTemperatures(HourlyTemperatures, AverageTemp) which displays the values of your temperature list in a columnar format followed by the values for the high temperature, low temperature, and average temperature for the day. NOTE: If you want to create separate function(s) to find and return the high and low temperature values, then feel free to do so!The resulting output should look something like this:Hour Temperature00:00 4201:00 42. . . . . . . . // Your program output must include all of these too!22:00 4623:00 48High Temperature: 68Low Temperature: 42Average Temperature: 57.45. Since you have several created functions to perform each of the major steps of your solution, your main(): function should be quite simple. The pseudo code for main() might look something like this: main() #declare any necessary variable(s) and HourlyTemperatures list while user-wants-to-process-another-days’-worth-of-temperatures call GetTemperatures(HourlyTemperatures) call ComputeAverageTemp(HourlyTemperatures) call DisplayTemperatures(HourlyTemperatures, AverageTemperature) ask if user want to process another days’ worth of temperatures6. Test your program with at least two (2) different sets of temperatures. Make sure you enter values to adequately test your temperature-validation code (e.g., temperatures below –50 and above +130 degrees).Deliverable(s):Your deliverable should be a Word document with screenshots showing the sample code you have created, and discuss the issues that you had for this project related to AWS and/or Python IDE and how you solved them.Turn in the properly documented source listing of your program and complete outputs from at least TWO (2) test “runs”. Additionally, turn in screen captures of some of your interactive inputs demonstrating that your program properly detects invalid inputs and prompts the user to re-enter the temperature(s).