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
¿Que piensas respecto al hecho de que María y Efraín rara vez se comunican directamente?
AleksandrR [38]

Answer:

Crean un código usando la naturaleza.

8 0
3 years ago
1. A loss of braking effectiveness due to too much heat in the brakes is called
motikmotik

Answer:

brake fade. loss of brake effectiveness due to overheating.

Explanation:

8 0
1 year ago
Which feature should a system administrator use to facilitate them? When working on opportunities, sales representatives at Univ
il63 [147K]

The correct answers are B & C; Chatter Groups and Similar opportunities.

Further Explanation:

Sales representatives can use chatter groups and other similar opportunities to their advantage. This can help them to understand and manage their products that are in direct competition with competitors.

A chatter group can be used to share ideas both privately and publicly. These groups can have more than 30,000 people or just 3 people, it depends on how many are interested in the topic or product. The groups can be made unlisted and by invite only and then you can see with whom you are talking to. Nonmembers can view anything written in the public and archived groups. This is a great way to see how your peers are doing with their product.

Learn more about chatter groups at brainly.com/question/4489111

#LearnwithBrainly

5 0
3 years ago
A controlled process is described by the closed-loop transfer function G(s).
MissTica

Answer:

The answer is "Option B".

Explanation:

Given equation:

G(s) =\frac{K(s + 1)}{2s^2 + (K-1)s + (K-1)}\\\\

if

\to 2s^2 + (K-1)s + (K-1)=0

Calculating by the Routh's Hurwitz table:

\to s^2  \ \ \ \ \    2  \ \ \ \ \ \  K-1 \\\\\to s^2  \ \ \ \ \    K-1  \ \ \ \ \ \   \\\\\to s^0 \ \  ( \frac{(K-1)(K-1)(-2) (0)}{K-1}  \\\\    \ \ \ \  = (K-1) )

Form the above table:

\to K-1 > 0 \\\\ \to K > 1

In the above, the value of k is greater than 1.

3 0
3 years ago
Assign rateMPH with the corresponding rate in miles per hour given a user defined rateKPH, which is a rate in kilometers per hou
zaharov [31]

Answer:

Here is the code for you:

function distanceMiles = CalculateDistance(timeHours, rateKPH)

%timeHours: Time in hours

%rateKPH: Rate in kilometers

rateMPH = KilometersToMiles(rateKPH); %Call KilometersToMiles function(below) to assign

%rateMPH with the corresponding speed in miles per

%hour

distanceMiles = rateMPH * timeHours;

end

function milesValue = KilometersToMiles(KilometersValue)

milesValue = KilometersValue * 0.6213712;

end

And the output screenshot is: [Attached]

7 0
3 years ago
Read 2 more answers
Other questions:
  • Find the resolving power of a Fabry-Perot interferometer in which two silver coated plates have reflectance of ???? = 0.9, if th
    12·1 answer
  • The given family of functions is the general solution of the differential equation on the indicated interval.Find a member of th
    11·1 answer
  • Plot the following trig functions using subplots, choosing an appropriate layout for the number of functions displayed. The subp
    8·1 answer
  • Here, we want to become proficient at changing units so that we can perform calculations as needed. The basic heat transfer equa
    15·1 answer
  • Can a real refrigerator have higher COP than the COP of the Carnot refrigerator?
    7·2 answers
  • In the High Low Logic Index low levels are bearish and high levels are bullish, generally True False
    13·1 answer
  • Which of the following correctly describes caster?
    8·1 answer
  • Which of the following explains the main reason to cut a piece of wood on the outside of the measurement mark?
    13·1 answer
  • Additional scals apply to the
    9·1 answer
  • Aqueous cleaners are ________ parts cleaning agents.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!