<u>Answer:
</u>
Participant observation is when an individual takes an active role in the culture and society they are studying.
<u>Explanation:
</u>
- When an individual chooses to involve himself actively in the operations of society in order to observe them closely and understand the nuances of each of the processes, he can be said to be carrying out participant observation.
- In this type of observation, the participant gets to become a part of the process that he is studying and understand it from within.
client symptom would be a priority to report to the health care provider would be the New-onset tachypnea and dyspnea.
<h3>What does client symptom mean?</h3>
This is the term that is used to refer to what the patient is exhibiting that has made them to come for treatment in a medical facility. The symptoms are usually known to range from less to severe sometimes and the treatment is done based on this also.
Hence we have to conclude that client symptom would be a priority to report to the health care provider would be the New-onset tachypnea and dyspnea.
Read more on client symptom here: brainly.com/question/28238407
#SPJ1
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)