1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
zavuch27 [327]
3 years ago
9

The following program includes fictional sets of the top 10 male and female baby names for the current year. Write a program tha

t creates: A set all_names that contains all of the top 10 male and all of the top 10 female names. A set neutral_names that contains only names found in both male_names and female_names. A set specific_names that contains only gender specific names. Sample output for all_names: {'Michael', 'Henry', 'Jayden', 'Bailey', 'Lucas', 'Chuck', 'Aiden', 'Khloe', 'Elizabeth', 'Maria', 'Veronica', 'Meghan', 'John', 'Samuel', 'Britney', 'Charlie', 'Kim'}

Engineering
2 answers:
yuradex [85]3 years ago
4 0

Answer:

Please see attachment

Explanation:

Please see attachment

otez555 [7]3 years ago
3 0

Answer:

Define Variables and Use List methods to do the following

Explanation:

#<em>Conjoins two lists together</em>

all_names = male_names.union(female_names)

#<em>Finds the names that appear in both lists, just returns those</em>

neutral_names = male_names.intersection(female_names)

#<em>Returns names that are NOT in both lists</em>

specific_names = male_names.symmetric_difference(female_names)

You might be interested in
When passing another vehicle, when is it acceptable to drive over the
miss Akunina [59]

Answer:

Under no circumstances

Explanation:

I'm not 100% sure why, but I remember hearing that you're not suposed to go over the speed limit no matter what

7 0
3 years ago
Read 2 more answers
A TPMS (tire pressure monitoring system) instrument panel indicator lamp is on. Technician A says the most likely cause is low t
zheka24 [161]

Answer:

Actualmente estoy trabajando en una pregunta diferente en este momento.

Explanation:

Actualmente estoy trabajando en una pregunta diferente en este momento.

6 0
3 years ago
What are the functions of each computer program
Ludmilka [50]
A function is a block of organized, reusable code that is used to perform a single, related action. Functions provide better modularity for your application and a high degree of code reusing. ... Different programming languages name them differently, for example, functions, methods, sub-routines, procedures, etc.
4 0
3 years ago
Q2) An engineer borrowed $3000 from the bank, payable in six equal end-of-year payments at 8%. The bank agreed to reduce the int
tatyana61 [14]
Answer is: $637.28; just did the math but i really don’t want to type it all out.
6 0
3 years ago
A missile flying at high speed has a stagnation pressure and temperature of 5 atm and 598.59 °R respectively. What is the densit
alexdok [17]

Answer:

5.31\frac{kg}{m^3}

Explanation:

Approximately, we can use the ideal gas law, below we see how we can deduce the density from general gas equation. To do this, remember that the number of moles n is equal to \frac{m}{M}, where m is the mass and M the molar mass of the gas, and the density is \frac{m}{V}.

For air M=28.66*10^{-3}\frac{kg}{mol} and \frac{5}{9}R=K

So, 598.59 R*\frac{5}{9}=332.55K

pV=nRT\\pV=\frac{m}{M}RT\\\frac{m}{V}=\frac{pM}{RT}\\\rho=\frac{pM}{RT}\\\rho=\frac{(5atm)28.66*10^{-3}\frac{kg}{mol}}{(8.20*10^{-5}\frac{m^3*atm}{K*mol})332.55K}=5.31\frac{kg}{m^3}

7 0
3 years ago
Other questions:
  • A hanging wire made of an alloy of nickel with diameter 0.19 cm is initially 2.8 m long. When a 59 kg mass is hung from it, the
    15·1 answer
  • Ultimate tensile strength is: (a) The stress at 0.2% strain (b) The stress at the onset of plastic deformation (c) The stress at
    7·1 answer
  • Matthew wants to manufacture a large quantity of products with standardized products having less variety. Which type of producti
    5·1 answer
  • How far do you jog each morning? You prefer to jog in different locations each day and do not have a pedometer to measure your d
    14·1 answer
  • When welding stick (SMAW) what is the distance between top of bare end of electrode and base metal?
    7·1 answer
  • Often an attacker crafts e-mail attacks containing malware designed to take advantage of the curiosity or even greed of the reci
    14·1 answer
  • What is the heart of a set of construction drawing?
    10·1 answer
  • Which of the following can effect LRO?
    12·1 answer
  • What can be used to relieve stress in a weld.
    12·2 answers
  • Technician A says that the starter solenoid switches the high current on and off. Technician B says that the solenoid on the sta
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!