A fund is built with annual deposits increasing by 1 from 1 to 10 and then decreasing
by 1 to $0 at an annual effective interest rate of 6%. At the end of 29 yrs, the fund is
used to purchase a 9 yr annuity with level payment $Y at an annual effective interest
rate of 4% with first payment 30 yrs from today. Calculate Y.
In: Finance
paste a picture of the model of lungs you built at home or took from the internet and label what equivalent part of the respiratory system each of the parts of your model represents. Then briefly describe how your model can be used to explain ventilation referring to the volume and pressure changes required and mimicked in your model. State the gas law(s) that apply to ventilation. If you did not build your own model – insert a picture from either a website that explains how to build the lung model (reference the web site!), or use the picture provided in prac manual 3 to label the components of the model.
In: Anatomy and Physiology
Question
Objective:
The purpose of this lab is for you to become familiar with Python’s built-in text container -- class str -- and lists containing multiple strings. One of the advantages of the str class is that, to the programmer, strings in your code may be treated in a manner that is similar to how numbers are treated. Just like ints, floats, a string object (i.e., variable) may be initialized with a literal value or the contents of another string object. String objects may also be added together (concatenation) and multiplied by an integer (replication). Strings may also be compared for “equality” and arranged into some order (e.g., alphabetical order, ordering by number of characters, etc.). Finally, strings may be placed in containers which can then be passed as arguments to functions for more complex manipulations.
Specifications:
Write an interactive Python program composed of several functions that manipulate strings in different ways. Your main() function prompts the user for a series of strings which are placed into a list container. The user should be able to input as many strings as they choose (i.e., a sentinel-controlled loop). Your main function will then pass this list of strings to a variety of functions for manipulation (see below).
The main logic of your program must be included within a loop that repeats until the user decides he/she does not want to continue processing lists of strings. The pseudo code for the body of your main() function might be something like this:
# Create the main function
def main():
# declare any necessary variable(s)
# // Loop: while the user wants to continue processing more lists of words
#
# // Loop: while the user want to enter more words (minimum of 8)
# // Prompt for, input and store a word (string) into a list # // Pass the list of words to following functions, and perform the manipulations
# // to produce and return a new, modified, copy of the list.
# // NOTE: None of the following functions can change the list parameter it
# // receives – the manipulated items must be returned as a new list.
#
# // SortByIncreasingLength(…)
# // SortByDecreasingLength(…)
# // SortByTheMostVowels(…)
# // SortByTheLeastVowels(…)
# // CapitalizeEveryOtherCharacter(…)
# // ReverseWordOrdering(…)
# // FoldWordsOnMiddleOfList(…)
# // Display the contents of the modified lists of words
#
# // Ask if the user wants to process another list of words
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.
Submit the program you develop including captured output. Also turn in screen captures from running your program inputting, as a minimum, three (3) sets word lists (no fewer than 8 words per list).
In: Computer Science
In: Advanced Math
i need a research for one of the first built tombs in the world. The selected tomb should have a superstructure. Specifically, focus on the, Evidential, Historical, Aesthetic and Communal Values of the tombs. In other words, determine the specific futures of a tomb in relation to their evidential, historical, aesthetic, and communal values
also Architect, architectural features, construction year and duration, construction materials, construction type, structural features, construction purpose and the features that make it different and significant and the importance of the construction for the society should be included and explained under the headings of Evidential, Historical, Aesthetic and Communal Values in the report. You should illustrate your explanations with photographs which should be referred in your report
a maximum 350-words long
Wikipedia or similar untrustworthy web sources are not allowed to be used as reference.
You need to submit the reference files to me as well (preferably as a PDF) and give names to the reference files with the name of the study described in the reference file
In: Civil Engineering
A road is built with a vertical transition curve. The PVC is at 111+05 and elevation of 322. The PVI is at 111+85 and elevation of 320. Low point of curve is at 111+65.
Find starting grade? Ending grade? Design speed of curve? Elevation of low point on curve?
In: Civil Engineering
Cryptocurrency, such as Bitcoin and Ethereum, is now a household name built on Blockchain Technology. This technology has potential application in some sectors of our economy such as insurance, healthcare, supply chain, real estate and even in the voting system. Consider the following statement and then argue for or against it.
“Use of Blockchain technology will change our economic system as we know it today.”
In: Economics
The local indigenous communities will be relocated from the area the houses are built upon. The leaders of the communities object, but their combined contribution to the market economy (measured with GDP) is negligible. Using internet research discuss the weaknesses of GDP as a measure of welfare. Describe the three parts to Wight’s taxonomy of ethical action and apply it to the decision whether to go ahead with the project
In: Economics
Question
Objective:
The purpose of this lab is for you to become familiar with Python’s built-in text container -- class str -- and lists containing multiple strings. One of the advantages of the str class is that, to the programmer, strings in your code may be treated in a manner that is similar to how numbers are treated. Just like ints, floats, a string object (i.e., variable) may be initialized with a literal value or the contents of another string object. String objects may also be added together (concatenation) and multiplied by an integer (replication). Strings may also be compared for “equality” and arranged into some order (e.g., alphabetical order, ordering by number of characters, etc.). Finally, strings may be placed in containers which can then be passed as arguments to functions for more complex manipulations.
Specifications:
Write an interactive Python program composed of several functions that manipulate strings in different ways. Your main() function prompts the user for a series of strings which are placed into a list container. The user should be able to input as many strings as they choose (i.e., a sentinel-controlled loop). Your main function will then pass this list of strings to a variety of functions for manipulation (see below).
The main logic of your program must be included within a loop that repeats until the user decides he/she does not want to continue processing lists of strings. The pseudo code for the body of your main() function might be something like this:
# Create the main function
def main():
# declare any necessary variable(s)
# // Loop: while the user wants to continue processing more lists of words
#
# // Loop: while the user want to enter more words (minimum of 8)
# // Prompt for, input and store a word (string) into a list # // Pass the list of words to following functions, and perform the manipulations
# // to produce and return a new, modified, copy of the list.
# // NOTE: None of the following functions can change the list parameter it
# // receives – the manipulated items must be returned as a new list.
#
# // SortByIncreasingLength(…)
# // SortByDecreasingLength(…)
# // SortByTheMostVowels(…)
# // SortByTheLeastVowels(…)
# // CapitalizeEveryOtherCharacter(…)
# // ReverseWordOrdering(…)
# // FoldWordsOnMiddleOfList(…)
# // Display the contents of the modified lists of words
#
# // Ask if the user wants to process another list of words
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.
Submit the program you develop including captured output. Also turn in screen captures from running your program inputting, as a minimum, three (3) sets word lists (no fewer than 8 words per list).
In: Computer Science
|
Sceptre began 20X5 with 1,000 lbs of coffee. These units were
purchased near the end of 20x4 for $100 each. During the month of
January 1000 units were purchased on January 8 for $110 each and
another 500 units were purchased on January 19 for $115 each. Sales
of 500 units and 1,000 units were made on January 10 and January
25, respectively. Sceptre uses a periodic inventory
system. Place your answer in the designated yellow box for each question. Show your work below the yellow boxes. |
||||||||||||
| Required: | ||||||||||||
| 1. Calculate GOGS under a FIFO Method at the end of January | ||||||||||||
| 2. Calculate GOGS under an Avg Cost Method at the end of January | ||||||||||||
| 3. Calculate GOGS under a LIFO Cost Method at the end of January | ||||||||||||
| 4. Calculate ending inventory under a FIFO Method | ||||||||||||
| 5. Calculate ending inventory under an average cost Method | ||||||||||||
| 6. Calculate ending inventory under a LIFO cost Method | ||||||||||||
In: Accounting