PHYTHON: Write a program that requests a list of animals names
and have it be in alphabetical order

Answers

Answer 1

Logic: animal_list.append(animal)

animal_list.sort() to sort the animal list in alphabetical order

```python

animal_list = []

# Input animal names until the user enters an empty string

while True:

   animal = input("Enter an animal name (or press Enter to finish): ")

   if animal == "":

       break

   animal_list.append(animal)

# Sort the animal list in alphabetical order

animal_list.sort()

# Display the sorted animal names

print("Sorted animal names:")

for animal in animal_list:

   print(animal)

```

In this program, we start with an empty list called `animal_list`. We then use a `while` loop to repeatedly ask the user to enter an animal name. The loop continues until the user presses Enter without entering any text.

Inside the loop, each animal name entered by the user is added to the `animal_list` using the `append()` method.

After the user finishes entering names, we sort the `animal_list` using the `sort()` method, which arranges the animal names in alphabetical order.

Finally, we iterate over the sorted `animal_list` and print each animal name on a new line, displaying the sorted animal names to the user.

Learn more about `sort()` method here: https://brainly.com/question/32332124

#SPJ11

Answer 2

To write a program in Python that requests a list of animal names and sorts them in alphabetical order, you can follow these steps:

1. First, you need to prompt the user to enter the animal names. You can use the `input()` function to get user input. For example:
```python
animal_list = input("Enter a list of animal names (separated by commas): ")
```

2. Next, you need to split the user input into individual animal names. Since the names are separated by commas, you can use the `split()` function to split the input string into a list of animal names. For example:
```python
animal_names = animal_list.split(",")
```

3. After splitting the input, you can use the `sort()` method to sort the animal names in alphabetical order. This method modifies the original list in-place. For example:
```python
animal_names.sort()
```

4. Finally, you can print the sorted list of animal names using a loop or the `join()` method. Here's an example of printing the sorted animal names using a loop:
```python
for animal in animal_names:
   print(animal)
```

Putting it all together, the complete program would look like this:
```python
animal_list = input("Enter a list of animal names (separated by commas): ")
animal_names = animal_list.split(",")
animal_names.sort()
for animal in animal_names:
   print(animal)
```

This program prompts the user to enter a list of animal names separated by commas. It then splits the input into individual names, sorts them in alphabetical order, and finally prints the sorted list of animal names.

Learn more about phython brainly.com/question/33479912

#SPJ11


Related Questions

In ten sentences, briefly describe Natural Language Processing.

Answers

Answer:

Natural Language Processing (NLP) is a subfield of artificial intelligence. It is intended to enable computers to understand, interpret and manipulate human language. NLP wants to bridge the gap between human communication and the language processing capabilities of computers by using a variety of disciplines, including computer science and computational linguistics. Natural language processing includes a wide variety of methods for interpreting human language, from statistical approaches and methods for machine learning to rule-based and algorithmic approaches. These diverse approaches are indispensable, because text- and language-based data are just as diverse as their use in practice. Basic NLP tasks are tokenization and parsing, lemmatization/stemming, part-of-speech tagging, speech recognition and the recognition of meaning relationships. Generally speaking, NLP tasks are about breaking language into shorter, elementary components, determining the relationships between these parts and investigating how meaning arises from the interaction of these parts.

under the advanced options screen, what is the startup option that should be enabled to view what did and did not load during the bootup?

Answers

The Advanced Boot Options menu can be accessed by pressing F8 while Windows is loading.

Using the Advanced Boot Options menu, you can start Windows in advanced troubleshooting modes. We can reach the menu by turning on your computer and pressing the F8 key before Windows starts. Under Advanced starting, tap or choose Restart now. Tap or choose Troubleshoot from the list of available options when our computer has restarted. Tap or click Advanced settings if we can't see the Startup Settings option. Then you tap or click on Startup Settings after we restart. On computers where it is not possible to disable a UEFI device, Windows Boot Manager is prioritized at the top of the list, and incompatible UEFI devices are listed last.

Learn more about advanced here-

https://brainly.com/question/13945615

#SPJ4

Pocso Group of Institutions has hired you to set up a LAN connection so that the students in the hostel can easily avail the prerecorded classes. These classes are provided through video lectures on the desktops situated at the common rooms for each hostel within the campus. Which of the following standards will you apply to provide the fastest transmission for their requirement?

a.
10BASE-T

b.
10GBASE-T

c.
100GBASE-T

d.
100BASE-TX

Answers

To provide the fastest transmission for the students' requirements, the recommended standard would be 10GBASE-T.

Out of the given options, 10GBASE-T is the most suitable standard to provide the fastest transmission for the students' requirements. This standard supports a transmission speed of 10 gigabits per second (Gbps), which is significantly higher compared to the other options.

10BASE-T is an older standard that supports a maximum speed of 10 megabits per second (Mbps). While it might have been sufficient in the past, it may not meet the requirements of transmitting video lectures efficiently, especially if multiple students are accessing the content simultaneously.

100GBASE-T, on the other hand, is an advanced standard capable of supporting a transmission speed of 100 gigabits per second (Gbps). While it offers a significantly higher speed than 10GBASE-T, it might be overkill for the students' requirements and may come with higher costs and infrastructure complexity.

100BASE-TX is a standard that supports a maximum speed of 100 Mbps, which is faster than 10BASE-T but considerably slower than 10GBASE-T. It may not provide the desired level of performance for transmitting video lectures efficiently.

Therefore, considering the need for fast transmission and the practicality of implementation, the 10GBASE-T standard is the most suitable choice to provide the fastest transmission for the students' requirements at Pocso Group of Institutions.

learn more about  fastest transmission here:

https://brainly.com/question/32333549

#SPJ11

In the current situation, how do you access information as a student? How will you integrate the use of ICT in your daily life and your chosen track?

Answers

Answer:

Explanation:

As a computer science student information is accessed in every possible way. This can be through a local school lan network, mobile devices, e-mail, etc. All of these help information flow to and from various people and makes obtaining this information incredibly simple as a student. Especially in the field of computer science, I need to integrate as many ICT devices with me in my everyday life, to send emails, check calendar updates, research information on the web, check school reports, and even speak with clients.

the use of technology to observe a user's actions often without the user's knowledge is known as:
A) Unauthorized access
B) Industrial espionage
C) Computer surveillance
D) Denial-of-service attack

Answers

Answer:

C

Explanation:

Computer surveillance refers to spying that allows the viewer to gain access of all activity on the given computer.

What is 4991 rounded to the nearest thousand

Answers

Answer:

5000

Explanation:

Answer: 5000

Explanation:

This is the answer because of the nine’s.

a 2. Consider the XOR problem. Propose a two-layer perceptron network with suitable weights that solves the XOR problem.

Answers

A suitable weight configuration for a two-layer perceptron network to solve the XOR problem is: Input layer: Neuron 1 weight = -1, Neuron 2 weight = 1

Hidden layer: Neuron 1 weight = 1, Neuron 2 weight = 1 Output layer: Neuron weight = -1.

How can a two-layer perceptron network be configured with suitable weights to solve the XOR problem?

To solve the XOR problem using a two-layer perceptron network, the suitable weights can be set as follows:

For the input layer:

- Neuron 1 weight: -1

- Neuron 2 weight: 1

For the hidden layer:

- Neuron 1 weight: 1

- Neuron 2 weight: 1

For the output layer:

- Neuron weight: -1

This configuration allows the network to perform XOR logic by assigning appropriate weights to the neurons.

Learn more about suitable weight

brainly.com/question/30551731

#SPJ11

When performing forensics on an apple computer, what operating system are you the most likely to encounter?.

Answers

When performing forensics on an apple computer, the operating system that you most likely to encounter is macOS.

What is the operating system for Apple computers?

Since 2001, Apple Inc. has created and sold the Unix operating system macOS. It serves as the main operating system for Mac computers made by Apple. It is the second-most popular desktop operating system in the market for desktop and laptop computers, after ChromeOS and ahead of Microsoft Windows.

Note that Apple created the operating system known as macOS. You are only able to utilize a computer thanks to the operating system. On all brand-new Apple Macintosh computers, macOS is already installed (commonly known as Macs).

Therefore, one can say that the statement above is correct.

Learn more about macOS from

https://brainly.com/question/26721366
#SPJ1

when you are reading your textbook, your brain changes the words you are reading into a network of neural connections that it can use. in memory, this process is called

Answers

When reading your textbook, your brain changes the words into a network of neural connections that can be used in memory. This process is called "encoding."

When you are reading your textbook, your brain undergoes a complex process of converting the words you are reading into a network of neural connections that it can use.

This process is known as encoding, which is the process of converting information into a form that can be stored in memory. The brain forms new connections between neurons as it processes and encodes new information, which allows it to better retain and retrieve the information later on. The process of encoding is critical for memory formation and is a key component of the learning process. So, to answer your question, the process of converting words into neural connections in memory is called encoding.Thus, when reading your textbook, your brain changes the words into a network of neural connections that can be used in memory. This process is called "encoding."

Know more about the encoding

https://brainly.com/question/3926211

#SPJ11

Which of these questions would help you determine the context of a
television commercial?
A. Where was my television made?
B. Why was this commercial made?
C. How long is this commercial?
D. How well do I like this commercial?

Answers

B
To understand the context of a television commercial you need to know why the show was made in the first place

how many instructions are supercomputers capable of processing in a single second?

Answers

Answer:

Trillions

Explanation:

A Supercomputer can process trillions of instructions in a second

A local park is interested in building a bridge over a short ravine. They have stressed that keeping costs low is very important to them. What type of bridge would you recommend they build?

Answers

Based on the requirement of low cost, I would recommend the park to build a simple beam bridge or a suspension bridge.

Why to build beam bridge or suspension bridge?

These types of bridges are relatively easy and inexpensive to construct compared to other types of bridges, such as arch bridges or cable-stayed bridges. However, the specific type of bridge would depend on the specific conditions and requirements of the location, such as the width and depth of the ravine, the load capacity required, and local building codes and regulations.

I recommend a beam or suspension bridge for cost-effectiveness. These are simple to build and suitable for short ravines. The specific type depends on site conditions and requirements.

To learn more about suspension bridge, visit: https://brainly.com/question/17582396

#SPJ1

, , ,g d,t ,dt m,dt ymtd

Answers

Answer:ummm me confused

Explanation:

4.11 lesson practice edhesive questions 4 and 5​

4.11 lesson practice edhesive questions 4 and 5

Answers

Answer:

It may just be me but I can't see the picture

Explanation:

Answer:

4. Monte carlo simulations

I need the answer for number 5 please.

Explanation:

Help me!!

This is your code.

>>> a = [5, 10, 15]
>>> b = [2, 4, 6]
>>> c = ['dog','cat', 'bird']
>>> d = [a, b, c]
How do you refer to 15?

responses
#1 d(0,2)
#2 d[0] [2]
#3 d[0,2]
#4 d(0) (2)

Answers

d[0][2] refers the value of the third element of a, which is 15.

The correct option is: #2 d[0] [2]

How do you refer to 15?

To refer to 15 in the code you provided, you can use :

d[0][2]

This code will first access the first list in the list d, which is a. Then, it will access the third element of a, which is 15. Finally, it will print the value of 15.

Below is an explanation of d[0][2] :

d is a list that contains three other lists: a, b, and c.

d[0] refers to the first list in d, which is a.

a[2] refers to the third element of a, which is 15.

d[0][2] refers the value of the third element of a, which is 15.

Learn more about list in coding on:

https://brainly.com/question/15062652

#SPJ1

Arman takes a picture with his smartphone which he subsequently posts online. Beatrice finds the picture online and posts a copy of it on her website with an attached Creative Commons license. Which of the following best describes who owns the photo? A. Beatrice owns the photo because only holders of a Creative Commons license can own works online. B. Arman owns the photo because he was the original creator and did not license the work. C. Arman owns the photo because it was granted a Creative Commons license by another person online. D. Both own the photo because creating a copy makes it her intellectual property.

Answers

Answer:

To me I think it’s B

Explanation:

The best statement that describes who owns the photo is that Arman owns the photo because he was the original creator and did not license the work.

For better understanding, we have to understand why Amman owns the photo and what creative Common license.

Amman own the photo and when he puts it online, he didn't license it but made it free for all to use. That does not mean someone should take His work and use as their own. Creative Commons simply known as the term that summarizes the scope of various outcome that exists between full copyright and the public domain. That is it ranges from all rights reserved to no rights reserved. This type of licenses helps one to have copyright while allowing certain uses of your work and the licenses can stand up in a court of law. Even though Beatrice has the creative license, the photo does not belong to her.

From the above, we can therefore say that the statement of The best statement that describes who owns the photo is that Arman owns the photo because he was the original creator and did not license the work is true.

Learn more about creative license from:

https://brainly.com/question/17082747

Which command should you enter at the command prompt to display the current user's quota limits and disk usage?

Answers

wmic diskdrive get size

In computer science how can you define "copyright, designs and patents act 1988"?​

Answers

Answer:

:)

Explanation:

Copyright Designs and Patents Act

The Copyright Designs and Patents Act (1988) gives creators of digital media the rights to control how their work is used and distributed. ...

Anything which you design or code is automatically copyrighted and may not be copied without your permission, as the digital creator.

While importing data from a web page into excel, creating a refreshable web query is used to ______.

Answers

While importing data from a web page into excel, creating a refreshable web query is used to keep data dynamic or updatable.

Each column of your source data becomes a field you may utilize in the report when you construct a Pivot Table report. Multiple rows of information from the original data are condensed into fields. On the pivot table, click. This causes the ribbon's PivotTable Tools tab to appear. Click Field Headers in the Show group of the Analyze or Options tab to toggle between displaying and hiding field headers. Slicers are a potent tool for filtering data in Pivot Tables in Sheets. With just one click, they make it simple to update values in pivot tables and charts. The equal sign (=) usually comes first in a formula. The characters that come after the equal sign are interpreted by Excel for the Web as a formula.

Learn more about headers here-

https://brainly.com/question/15163026

#SPJ4

It is a function to enable the animation loop angld modify

Answers

To enable and modify the animation loop, create a function that controls animation properties and incorporates desired modifications.

To enable the animation loop and modify it, you can create a function that controls the animation and incorporates the necessary modifications. Here's an example of how such a function could be implemented:

```python

function animate() {

   // Modify animation properties here

   // For example, change the animation speed, direction, or elements being animated

   

   // Animation loop

   requestAnimationFrame(animate);

}

```

In the above code snippet, the `animate()` function is responsible for modifying the animation properties and creating an animation loop. Within the function, you can make any desired modifications to the animation, such as adjusting the speed, direction, or the elements being animated.

The `requestAnimationFrame()` method is used to create a loop that continuously updates and renders the animation. This method ensures that the animation runs smoothly by synchronizing with the browser's refresh rate.

To customize the animation loop and incorporate modifications, you can add your own code within the `animate()` function. This could involve changing animation parameters, manipulating the animation's behavior, or updating the animation based on user input or external factors.

Remember to call the `animate()` function to initiate the animation loop and start the modifications you have made. This function will then continuously execute, updating the animation based on the defined modifications until it is stopped or interrupted.

By using a function like the one described above, you can enable the animation loop and have the flexibility to modify it according to your specific requirements or creative vision.

Learn more about animation here

https://brainly.com/question/30525277

#SPJ11

You are given these tables to work with:
SUPPLIER(SUPNR, SUPNAME, SUPADDRESS, SUPCITY, SUPSTATUS)
SUPPLIES(SUPNR, PRODNR, PURCHASE_PRICE, DELIV_PERIOD)
PRODUCT(PRODNR, PRODNAME, PRODTYPE, AVAILABLE_QUANTITY)
PURCHASE_ORDER(PONR, PODATE, SUPNR)
PO_LINE(PONR, PRODNR, QUANTITY)
1. Display all supplier names (SupName) and their product names (ProdName), sort the results in alphabetical order on supplier name (SupName).
2. Display ONLY the supplier name (SupName) who has the most orders in Purchase_Order table.
3. Use a MINUS statement, list product numbers (ProdNR) that are in Product table but have never been ordered.

Answers

The provided SQL scenarios demonstrate how to display supplier names and their product names, identify the supplier with the most orders, and list product numbers that have never been ordered. These examples showcase the versatility and power of SQL in retrieving and manipulating data from relational databases.

The provided scenarios demonstrate various SQL statements and operations. The first scenario involves displaying supplier names (SupName) and their corresponding product names (ProdName) from joined tables, sorted alphabetically based on supplier name.

The second scenario focuses on displaying the supplier name with the most orders from the Purchase_Order table, utilizing the MAX function and subqueries.

Lastly, the third scenario employs a MINUS statement to list product numbers (ProdNR) from the PRODUCT table that have never been ordered, by subtracting the ordered products from the complete product list. These examples highlight the flexibility and power of SQL in retrieving and manipulating data from relational databases.

Learn more about SQL : brainly.com/question/25694408

#SPJ11


Why do you think that so many of these sources have similar names?

Answers

I don’t think so because

Complete the following sentences using each of the words provided ONCE only. KEYBOARD DESKTOP STORE PRINTER COMPUTER MOUSE MONITOR CD Bay PRINTER TOWER CASE CENTRAL PROCESSINGENIT is an electronic device that retrieves, and processes shows you what is going on in the computer. is the first image you see on your screen when the computer is is used for telling the computer what to do. is used for typing documents. is used for putting documents on paper. you can insert a CD or Compact Disc. is is box inside and shaped 1) A 2) The 3) The data. switched on. 4) The 5) The 6) The 7) In the 8) The it​

Answers

Answer:

Explanation:

Monitor is an electronic device that retrieves, and processes shows you what is going on in the computer.

Desktop is the first image you see on your screen when the computer is is used for telling the computer what to do.

keyboard

is used for typing documents. Printer is used for putting documents on paper. CD Bay you can insert a CD or Compact Disc. is is box inside and shaped

There is a weird green and black kinda growth on my screen that moves when I squeeze the screen, it also looks kinda like a glitchy thing too,Please help

Answers

LCD stands for Liquid Crystal Display. So yes, what you're seeing is liquid. it's no longer contained where it needs to be.

A problems where all the variables are binary variables is called a pure BIP problem, true or false?

Answers

True. A problems where all the variables are binary variables is called a pure binary integer programming (BIP) problem, is true statement.

A pure binary integer programming (BIP) problem is one where all the decision variables are binary, taking only the values 0 or 1. Such problems can be solved using specialized algorithms that are specifically designed for binary variables. One common application of pure BIP is in binary optimization problems, such as in scheduling or resource allocation. The use of binary variables allows for easy representation of decision choices, making it easier to interpret and implement the results. Additionally, pure BIP is a subset of mixed-integer programming (MIP), where some variables can take on non-binary values, allowing for even more complex problems to be solved.

learn more about programming here:

https://brainly.com/question/11023419

#SPJ11

which of the following is not a part of the 3 essential design that raid technology can take? select one: a. raid level 0(striping) b. raid level 1 (parity) c. raid levels 4/5 (parity based redundancy) d. raid level 1 (mirroring)

Answers

Disk mirroring or disc striping are techniques used in RAID. Mirroring will transfer the same data to many drives. Striped partitions aid in spreading

Which three RAID setups are the most popular?

The level of fault tolerance, read and write speeds, and storage capacity are commonly used to evaluate configurations. Today, a variety of RAID levels, some of which are uncommon, are in use. The RAID configurations RAID 0, RAID 1, RAID 5, RAID 6, and RAID 10 are the most used.

What qualities does RAID Level 1 possess?

Since data is written simultaneously to two locations, RAID 1 requires a minimum of two physical discs. Since the drives are basically mirror duplicates of one another, if one fails, the other

What are RAID controllers' primary responsibilities?

The two main purposes of a RAID controller are to generate redundancy to ensure that data can still be accessed in the event of drive failure and to merge numerous slow or low-capacity storage devices into a single quicker and larger drive so that they may operate as a logical unit.

To know more about Raid visit;

https://brainly.com/question/30036295

#SPJ4

which technological system can be used for both hurricanes and tornadoes?

Answers

One of the technological systems that can be used for both hurricanes and tornadoes is the Doppler radar system.

Doppler radar is an advanced radar technology that can track weather patterns and detect the movement of air particles in the atmosphere. It is a valuable tool in the detection of severe weather conditions such as tornadoes and hurricanes.The Doppler radar system can detect changes in the wind speed and direction caused by severe weather patterns. By tracking these changes in the atmosphere, the Doppler radar can provide critical information about the location and intensity of a storm.

This information is then used by meteorologists and emergency responders to issue warnings and take appropriate action to protect people and property from harm.In the case of hurricanes, Doppler radar is used to track the progress of the storm as it moves across the ocean and towards land. It can also detect changes in the intensity of the storm and provide early warning of potential hazards such as storm surges and flooding.In the case of tornadoes, Doppler radar is used to detect the formation and movement of tornadoes.

For such  more questions on radar system:

brainly.com/question/31102364

#SPJ11

Plz plz plz help QUICKLY idk the answer and I really need help

Plz plz plz help QUICKLY idk the answer and I really need help

Answers

Answer:

productivity is the correct answer

When you install powerpoint, the default setting allows you to reverse up to the last ____ changes by tapping or clicking the undo button on the quick access toolbar.

Answers

When you install PowerPoint the default setting allows you to reverse up to the last 20 changes by tapping or clicking the Undo button on the Quick Access Toolbar.

What is Quick Access Toolbar?

The Quick Access Toolbar is a handy spot to add your favorite commands because they will always be visible regardless of where you are on the Ribbon. However, not everyone is aware of another justification for using it: There is a keyboard shortcut for each command in the Quick Access Toolbar, putting them all at your fingertips.

The QAT is completely adaptable, and users can add or remove a command right from the toolbar. A predefined list of instructions, including "New," "Open," "Save," "Print," "Print Preview," "Send In Email," "Undo," and "Redo," is displayed when the QAT drop-down arrow is clicked. A check mark appears next to the name of each active command on a user's QAT.

Learn more about Powerpoint here:

https://brainly.com/question/10444759

#SPJ4

How did imperialism lead to WWI? A The debate of the morality of imperialism created tensions around Europe b Native people were conquered and rebelled against Europe c Europe went into an economic depression when imperialism failed d European nations competed and made alliances to control colonies

Answers

Answer:

d. European nations competed and made alliances to control colonies.

Explanation:

The world War I was a period of battle between various countries from 1914 to 1918. It started formally on the 28th of July, 1914 and ended on the 11th of November, 1918.

Imperialism can be defined as a policy, ideology, or advocacy that sought to extend a country's power, dominion, authority and influence over another country through diplomacy, use of military force or colonization (direct territorial acquisition).

This ultimately implies that, imperialism is an advocacy or policy that is typically used to impose or extend a country's power, dominion, authority and influence. It simply means to seek colonies of other nations or countries.

Hence, imperialism led to WW1 because European nations competed and made alliances to control colonies.

In conclusion, there was an eagerness on the part of European Nations to gain colonial territories that were owned by other rival nations.

Other Questions
A sample of propane, C3H8, occupies 1.73 mL when the pressure is 320 torr at 30 C. What is the volume at STP give me a 4 reason why your parents thinks this behaviour is problematic Order the expressions by choosing >, having a written quality plan at the outset of a project is extremely beneficial because it guarantees against incurring additional costs and schedule extensions due to rework caused by work and deliverables that fail to meet quality requirements and customer expectations. group of answer choices false true a. making the initial determination that information requires protection against unauthorized disclosure in the interest of national security. b. carrying forward that determination into new material. c. marking the information to show its classified status. d. determining whether information has been classified previously. A retailer completed a physical count of ending merchandise inventory. When counting inventory, employees did not include $3,000 of incoming goods shipped by a supplier on december 31 under fob shipping point. These goods had been recorded in merchandise inventory, but they were not included in the physical count because they were in transit. This means shrinkage was incorrectly overstated by $3,000. The cabinet is made up of the___________ president, the ________ of the executive departments, and other top government officals For a business to be successful, a competitive advantage must be ________.A. profitableB. sustainableC. expensiveD. legal suppose the central bank in your country has price stability as its primary goal. faced with a choice of having monetary policy decisions made by a well-qualified individual with an extremely strong dislike of inflation or a committee of equally well-qualified people with a wide range of views, which choice would you recommend? multiple choice having monetary policy decisions made by a well-qualified individual with an extremely strong dislike of inflation. having monetary policy decisions made by a committee of equally well-qualified people with a wide-range of views. 62 + j = 74; j = 12Is this true or not Which of the following best describes how to solve2x+3 = 2x + 37 A consumer products company is formulating a new shampoo and is interested in foam height (in mm). foam height is approximately normally distributed and has a standard deviation of 20 mm. the company wishes to test h0: = 175 mm versus h1: At the break-even point, Multiple Choice costs are zero. price is maximized. profits are zero. fixed costs are zero. contribution per unit is zero. the distribution of prices for a certain car model is approximately normal with mean $21,800 and standard deviation $400. a random sample of 4 cars of the model will be selected. Which of the following statements is not true about congruent triangles? A. Corresponding parts of congruent triangles are congruentB. If ABC is equilateral, then ABC CBAC. Congruence for triangles is an equivalence relationD. Congruent triangles may or may not have the same size and shape Kindom charges $80.00 flat fee to rent out for birthday, and an additional $9.00 per person. The maximum amount to spend is $250.00. How many people can attend? Which type of force enables all the matter made up of atoms to exist?A. ElectromagneticB. NormalC. Strong nuclearD. Gravitational Marginal Private Benefits and Marginal Social Benefits. Without governmentintervention, this market will produce _____ units at a price of _____.A) Q0; P0B) Q1; P0C) Q1; P2D) Q2; P1 John owns a hotdog stand. He has found that his profit is represented by the equation P(x)=-x2+68x+81, where is x the number of hotdogs. How many hotdogs must he sell to earn the most profit?Select one:a. 81 hotdogsb. 47 hotdogsc. 68 hotdogsd. 34 hotdogs Baby Christopher and his mom are very attuned to one another. Their interactions are reciprocal and mutually rewarding. Developmentalists are likely to note that their relationship is high on: