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
Using OOP, write a C++ program that will read in a file of names. The file is called Names.txt and should be located in the curr
Tanzania [10]
Not really sure sorry for not being able to help
5 0
3 years ago
Read 2 more answers
State three characteristic of lines of magnetic flux​
stepladder [879]

Answer:

1. The magnetic flux line form a closed loop.

2. The magnetic flux line repel each other.

3. The magnetic flux line never intersect.

5 0
2 years ago
Read 2 more answers
Which option best describes a way engineers can provide maintenance, diagnoses, upgrades, or duplicates even for products they d
guajiro [1.7K]

Answer:

Reverse Engineering

Explanation:

Just took the test

4 0
2 years ago
How long does it take to complete Fort nite: Save The World?
maria [59]
<h3><u>Answer:</u></h3>

Over 8 straight days of playing

<h3><u>Explanation:</u></h3>

200+ hours, if you're a game master

4 0
3 years ago
Read 2 more answers
In a planetary geartrain with a form factor of 8, the sun gear rotates clockwise at 5 rad⁄s and the ring gear rotates clockwise
lina2011 [118]

Answer:

D. N= 11. 22 rad/s (CW)

Explanation:

Given that

Form factor R = 8

Speed of sun gear = 5 rad/s (CW)

Speed of ring gear = 12 rad/s (CW)

Lets take speed of carrier gear is N

From Algebraic method ,the relationship between speed and form factor given as follows

\dfrac{N_{sun}-N}{N_{ring}-N}=-R

here negative sign means that ring and sun gear rotates in opposite direction

Lets take CW as positive and ACW as negative.

Now by putting the values

\dfrac{N_{sun}-N}{N_{ring}-N}=-R

\dfrac{5-N}{12-N}=-8

N= 11. 22 rad/s (CW)

So the speed of carrier gear is 11.22 rad/s clockwise.

8 0
3 years ago
Other questions:
  • A stem and leaf display
    12·1 answer
  • Liquid water is fed to a boiler at 24°C and 10 bar is converted at a constant pressure to saturated steam.
    12·1 answer
  • The Ethernet (CSMA/CD) alternates between contention intervals and successful transmissions. Assume a 100 Mbps Ethernet over 1 k
    5·1 answer
  • What is the thermal efficiency of this reheat cycle in terms of enthalpies?
    11·1 answer
  • What are three automotive safety systems
    14·1 answer
  • For laminar flow of air over a flat plate that has a uniform surface temperature, the curve that most closely describes the vari
    15·1 answer
  • Which of these people is an engineer?
    13·1 answer
  • Which design activity is part of the design for manufacturability (DFM) methodology?
    10·1 answer
  • Use the map to answer the question.
    12·1 answer
  • Vivian's Violins has sales of $326,000, contribution margin of $184,000 and fixed costs total $85,000. Vivian's Violins net oper
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!