Source: Places where infectious agents (germs) live (e.g., sinks, surfaces, human skin)
Susceptible Person with a way for germs to enter the body
Transmission: a way germs are moved to the susceptible persont
        
             
        
        
        
Answer: According to the video, the way we behave, decisions we make, and emotions we have are closely tied to ______our social situations_______. our gender our physiology our social situations our intelligence
Explanation:
 
        
             
        
        
        
The best thing that Raven can do to position such a diverse team that comes from different departments for success is to b. acknowledge that people bring different values and perspectives and encourage them to speak openly.
<h3>Why should Raven acknowledge diversity?</h3>
There is strength in diversity because the different people will be able to bring unique things to the table. 
Encouraging them to speak freely on these things will allow for the team to develop multiple ways of dealing with things which will increase their chances of success. 
In conclusion, option B is correct. 
Find out more on diversity at brainly.com/question/4697836.
 
        
             
        
        
        
The primary goals of the juvenile justice system, in addition to maintaining public safety, are skill development, habilitation, rehabilitation, addressing treatment needs, and successful reintegration of youth into the community.
 
        
                    
             
        
        
        
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)