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
What is the metal removal rate when a 2 in-diameter hole 3.5 in deep is drilled in 1020 steel at cutting speed of 120 fpm with a
Studentka2010 [4]

Answer:

a) the metal removal rate is 14.4 in³/min

b) the cutting time is 0.98 min

Explanation:

Given the data from the question

first we find the rpm for the spindle of the drilling tool, using the equation

Ns = 12V/πD

V is the cutting speed(120 fpm) and D is the diameter of the hole( 2 in)

so we substitute

Ns = 12 × 120 / π2

Ns = 1440 / 6.2831

Ns = 229.18 rmp

Now we find the metal removal rate using the equation

MRR = (πD²/4) Fr × Ns

Fr is the feed rate( 0.02 ipr ),

so we substitute

MRR = ((π × 2²)/4) × 0.02 × 229.18

MRR = 14.3998 ≈ 14.4 in³/min

Therefore the metal removal rate is 14.4 in³/min

Next we find the allowance for approach of the tip of the drill

A = D/2

A = 2/2

= 1 in

now find the time required to drill the hole

Tm = (L + A) / (Fr × Ns)

Lis the the depth of the hole( 3.5 in)

so we substitute our values

Tm = (3.5 + 1) / (0.02 × 229.18  )

Tm = 4.5 / 4.5836

Tm = 0.98 min

Therefore the cutting time is 0.98 min

8 0
2 years ago
State the number of terms for each of the following algebraic expression 2x+1
harina [27]

Answer:

Expressions are made up of terms.

A term is a product of factors.

Coefficient is the numerical factor in the term

Before moving to terms like monomials, binomials, and polynomials, like and unlike terms are discussed.

When terms have the same algebraic factors, they are like terms.

When terms have different algebraic factors, they are unlike terms.

Explanation:

Hi please follow me also if you can and thanks.

6 0
3 years ago
Design a sequential circuit DETECTOR that has one input X and one input Y. The DETECTOR detects the sequence 110. If an input X
Novosadov [1.4K]

Answer:

See explaination

Explanation:

This is going to require diagrams, please kindly see attachment for the detailed step by step solution of the given problem.

5 0
3 years ago
A cylindrical resistor element on a circuit board dissipates 0.6 W of power. The resistor is 1.5 cm long, and has a diameter of
Burka [1]

Answer:

a. 51.84Kj

b. 2808.99 W/m^2

c. 11.75%

Explanation:

Amount of heat this resistor dissipates during a 24-hour period

= amount of power dissipated * time

= 0.6 * 24 = 14.4 Watt hour

(Note 3.6Watt hour = 1Kj )

=14.4*3.6 = 51.84Kj

Heat flux = amount of power dissipated/ surface area

surface area = area of the two circular end  + area of the curve surface

=2*\frac{\pi D^{2} }{4} + \pi DL\\=2*\frac{\pi *(\frac{0.4}{100} )^{2} }{4} + \pi *\frac{0.4}{100} *\frac{1.5}{100}

= 2.136 *10^-4 m^{2}

Heat flux =\frac{0.6}{2.136 * 10^{-4} } = 2808.99 W/m^{2}

fraction of heat dissipated from the top and bottom surface

=\frac{\frac{2*\pi D^{2} }{4} }{\frac{2*\pi D^{2}}{4} + \pi DL } \\\\=\\\frac{\frac{2*\pi *(\frac{0.4}{100} )^{2} }{4} }{\frac{2*\pi *(\frac{0.4}{100}  )^{2} }{4} +\pi *\frac{0.4}{100} *\frac{1.5}{100} } \\\\=\frac{2.51*10^{-5} }{2.136*10^{-4} } \\\\\= 0.1175

=11.75%

8 0
3 years ago
Read 2 more answers
Explain mathematically whether the divergence of the curl of a vector field is
svp [43]

Answer:

yes

Explanation:

6 0
3 years ago
Other questions:
  • One cylinder in the diesel engine of a truck has an initial volume of 650 cm3 . Air is admitted to the cylinder at 35 ∘C and a p
    7·1 answer
  • Two variables, num_boys and num_girls, hold the number of boys and girls that have registered for an elementary school. The vari
    8·1 answer
  • Bob and Alice are solving practice problems for CSE 2320. They look at this code: for(i = 1; i &lt;= N; i = (i*2)+17 ) for(k = i
    6·2 answers
  • 1. Design a circuit, utilizing set/reset coils where PB 1 starts Motor 1 and PB2 stops Motor 1. Pressing and releasing either pu
    14·1 answer
  • What is a core self-evaluation, include identifying and explaining the components of core self-evaluation. And, how a group lead
    8·2 answers
  • A 800-MW steam power plant, which is cooled by a nearby river, has a thermal efficiency of 40 percent. Determine the rate of hea
    5·1 answer
  • Quinn’s relatives relayed a story about putting on a headset and seeing a digital world that they could walk around in and explo
    8·2 answers
  • A spherical metal ball of radius r_0 is heated in an oven to a temperature of T_1 throughout and is then taken out of the oven a
    6·1 answer
  • Reverse Engineering: Structural Analysis
    14·1 answer
  • Describe the greatest power in design according to Aravena?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!