Answer:
A historical person or event can acquire significance if we, the historians, can link it to larger trends and stories that reveal something important for us today.
Explanation:
When Andrew Jackson was President he successfully established the spoils system. The spoils system is when family or friends of the president or vice president get government jobs even when other people are qualified to do the same jobs.
a) the spoils system
The answer is methadone. It is also a form of opioid and used to treat people experiencing extreme pain. it is also used to treat addiction to other opioids. It can give a similar feeling and inhibit withdrawal symptoms. It is generally less potentially harmful than heroin because it blocks the high you get from addictive drugs like codeine, heroin, morphine and etc.
Answer:Exclusive Distribution
Explanation:
As the Honey Farms is making the Finest Chocolates, therefore, they will go for Exclusive Distribution to distribute their new Product.
Exclusive Distribution as the name suggests is an agreement between the manufacturer and Distributor that the manufacturer will not sell their Product to anyone else and will sell only to the exclusive distributor.
It can help the manufacturer in the following ways
- Focus: Company is more Focused as it no longer needs to worry about the distribution of products.
- Control: As the distributor is dependent on the manufacturer so the company is in complete control.
- Inventory: Exclusive distribution allows the manufacturer to store a large amount of inventory.
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)