Answer: answering the phone in a timely and polite manner.
Explanation: Make the customer feel that they are extra special, which they are, and this will contribute to higher sales, a positive attitude about the company, and increase in returning customers
<span>True. It depends on the distance and the
environments where the organisms are situated.
When species move together or have to take care of each other then it is
a clump distribution. If the distribution
is even then it means organisms need to put some space between themselves or keep out of reach from each other due to
competition. If organisms are living
independent from each other then it is random. </span>
It’s either A or B but I say because I found the story I think B
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)