Answer to question 16)
-Women nurses risked their lives for soldiers but could not vote. So their great involvement and help in the war helped them get the vote
-women had helped out a lot in the war when men were conscripted when men over a certain age were forced to go to fight for his the women had to take on the jobs of men in the United States and this proved that women were just as capable as men at accomplishing things. Because of the vital work completed by the women during the war and politicians became sympathetic to their cause and allowed them to vote.
Answer to question 17)
-They believed that their people,their country was stronger,better,and had greater willpower than other
countries,and that therefore they would inevitably triumph in any conflict with them.
Hope this helps (:
Beginning: Kate Middleton was born on January 9, 1982 at <span>Royal Berkshire Hospital in Reading, England.
</span>Middle: <span>One of Kate's causes is Children's Cancer.
</span> Many people think of Kate as a princess but she is actually The Duchess of Cambridge.
End: <span>What I learned was that Kate Middleton is not a princess she is a Duchess.</span>
Answer: The Harappan people used to trade with foreign lands traveling through seas. The seaports found in Harappan civilization state that they were not bound to their own territories. ... It was found that they also imported Jade from China and Cedarwood which were all traded through the rivers such as Sutlej, Ravi, and Indus.
Hope I helped?
Answer: Definetly NURTURE
Heres a link that might help you: https://quizlet.com/75731666/chapters-3-4-review-flash-cards/
Answer:
Dictionary
Explanation:
Most Data types do hold only one value as an element, python's Dictionary holds key/value pair. In Python, DICTIONARIES are unordered collection of data. These data are used to store values, for instance in the question given, writing the script that will make use of user input contact names and their associated phone numbers; DICTIONARY is ideal for storing and accessing these associated values.
When creating a python's Dictionary it is worthy of note that dictionary keys are case sensitive. Dictionary, in Python can be created by imputing sequence of elements within - {}, and then you separate {} by ‘comma’. For example;
# Creating contact names
Dict = {}
print("contact name: ")
print(Dict)