It is actually podcast! i took the quiz as well :)
Answer:
The answer is D "Latisha is a Mechanical Engineer with a bachelor's degree"
Explanation:
Workers in Manufacturing Production Process Development are liable for designing plan and plan of the manufacturing process. They work with clients to guarantee the manufacturing process delivers an item that meets or surpasses client expectations. Manufacturing Production Process Development is one of the many career paths in the Manufacturing Industry. Laborers in this Profession Way are liable for fundamental item plans and the plan of the manufacturing process itself. They should reliably draw in with their client to guarantee they produce an item that precisely coordinates their client's necessities. Occupations in this Profession Way incorporate Electrical and Electronic Drafters, Modern Designing Technologists, Assembling Creation Professionals, and Atomic Checking Specialists.
Answer:
#Set of three most popular names in 2007
male_names = {'Oliver', 'Declan', 'Henry'}
#The male_names set is displayed to the user
print(male_names)
#The name to be removed is accepted from the user as a string
remove_name = str(input("Enter name to remove: "))
#The name to be added is accepted from the user as a string
add_name = str(input("Enter name to add: "))
#The remove method of a set is use to remove the received remove_name
male_names.remove(remove_name)
#The add method of a set is use to add the received add_name
male_names.add(add_name)
#The new set of male_names is displayed to the user
print(male_names)
Explanation: