Which loop prints the numbers 1, 2...100?

c = 1

while (c <= 100):
c = c + 1
print (c)

c = 1

while (c < 100):
c = c + 1
print (c)

c = 1

while (c <= 100):
print (c)
c = c + 1

c = 1

while (c < 101):
c = c + 1
print (c)

Answers

Answer 1

Answer:

while (c <= 100):

print (c)

c = c + 1

Explanation:

We can cancel out the while loops with ' < ' because then it won't print when C is 100.

while (c <= 100):

print (c)

c = c + 1

Is probably right because unlike the other while loop with ' <= ' it has a print statement before the C = C + 1 which means look at this:

C = 1

print(c)

C = C + 1

So when it's run 1 is printed

But when doing the other while loop:

c = 1

while (c <= 100):

print (c)

c = c + 1

C = 1

c = c + 1

print(c)

It prints 2 because it added 1 to C first before actually printing it.

Answer 2

The loop that prints the numbers 1, 2...100 is

c = 1

while (c <= 100):

   print (c)

   c = c + 1

We are to find the loop that prints the numbers 1 , 2 …100.

Therefore, the loop that print 1 to 100 can be represented as follows:

c = 1

while (c <= 100):

   print (c)

   c = c + 1

c is a variable initialize with zero.

The while loop is used to check if c is less than or equals to 100.

If c is less than or equal to 100 we print the value of c .

Then we add 1 to c and go back to the loop again.

learn more on loop here: https://brainly.com/question/19705987?referrer=searchResults

Which Loop Prints The Numbers 1, 2...100?c = 1while (c &lt;= 100): C = C + 1 Print (c)c = 1while (c &lt;

Related Questions

Select each of the tasks that you could complete using a word processor.

Create a table that lists your favorite movies and actors

Make a list of homework assignments

Take notes for science class

Search for information on the Internet

Write a manuscript of a book

Schedule a meeting

Answers

Answer:

Create a table that lists your favorite movies and actorsWrite a manuscript of a bookMake a list of homework assignments

Explanation:

Word processing tool is used for different purposes such as typing reports, preparing notes and books etc.

Now from the given options, following tasks can be performed using a word processor

Create a table that lists your favorite movies and actorsWrite a manuscript of a bookMake a list of homework assignments

Create a table that lists your favorite movies and actors

Write a manuscript of a book

Make a list of homework assignments

(Yes I did copy the person above me)

Jason has decided to use his name on all the images to protect them from misuse. He has also decided to use the logo of his company across all
the images to be extra sure about its protection in the digital world. Select the phrases or sentences that describe the two types of watermarking
options has he used to get the results.
Types of Watermarking Options
Jason wants to tag his name or logo somewhere on the image, preferably in the corner of the photo. He uses an online editing tool to add his
name at the corner of the image. He can prevent misuse of his Images online by adding a watermark over the image. Text watermarking
involves adding the imageer's name at the corner of the image. This is usually done with the help of online editing tools or software. In this form
of watermarking, he can use the logo of his company over the image to protect his identity.
Just to be sure, Jason also uses tiled watermarking, which involves placing his company logo in a pattern spread across the image. First, he
creates a copy of the original. This is to make sure that the watermarked version is saved separately. If needed, he can always access the
original image. Then he opens the logo that he wants to use as the watermark, coples It, and pastes it onto a new layer, above the image. He
turns down the opacity of the layered image. Then he merges the layer to join the watermark with the image.
L

Answers

Answer:

Text watermarking involves adding the photographer's name at the corner of the image.

Explanation:

This was one of the correct answers when I took the test, I got it wrong because I didn't pick all the correct answers. I hope that this was helpful to you! If you know the other correct answer(s) please comment and let me know and i'll edit this answer! :)

Answer:

Text watermarking involves adding the imageer’s name at the corner of the image

tiled watermarking, which involves placing his company logo in a pattern spread across the image

Explanation:

on edmentum

If a business/industry does not meet OSHA standards?

Answers

Answer:

Criminal penalties ensue if an employer willfully violates OSHA regulations a

Explanation: will result in individual may be fined up to $10,000 and be jailed for up to six months.

Answer:

Criminal penalties ensue if an employer willfully violates OSHA regulations and an employee is killed as a result. The guilty individual may be fined up to $10,000 and be jailed for up to six months.

Explanation:

Which type of document should Omar print?

Answers

Well it depends on the topic he is doing. if it is a list then a plain doc with a list of numbers. if he is writing a letter then he should use the letter template.

Answer: A

Explanation:

To use
as an effective note-taking tool, students should write or type thoughts, questions, or ideas on them while reading.

Answers

Answer:

B. Sticky notes

Explanation:

To use sticky notes as an effective note-taking tool, students should write or type thoughts, questions, or ideas on them while reading.

What are effective notes taking?

You remain awake because of it. Using words compels you to pay attention and enables you to be recognized for your greatness (or at the same time as analyzing a textbook).

It makes analysis possible. According to studies on studying, actively engaging with the material by listening and then summarizing what you hear will help you comprehend and remember the details later. Effective note-taking causes information to be recalled better.

It will be easier to remember the information for the test if you repeat the information more frequently in specific formats, such as note-taking or flashcards. Checks can be another way of remembering things.

Therefore, students should type or write down their thoughts, questions, or ideas on sticky notes while reading in order to use them as an efficient note-taking tool.

To learn more about effective notes, refer to the link:

https://brainly.com/question/29790338

#SPJ6

Alizeh invests $10,000 in an actively managed mutual fund that has an annual expense ratio of 1.3%. The investment earns a 7% rate of return.

How much did she make in one year on her investment with the 7% rate of return?
How much does she pay in fees for her actively managed mutual fund?
At the end of the year, what’s the total value (AFTER FEES) of Alizeh’s mutual fund?

Answers

Answer:

Alizeh

The total value (AFTER FEES) of Alizeh’s mutual fund is:

$10,570.

Explanation:

a) Data and Calculations:

Investment in mutual fund = $10,000

Annual expense ratio = 1.3%

Rate of return on investment = 7%

b) Annual return on investment = $700 ($10,000 * 7%)

c) Annual fees for her actively managed mutual fund = $130 ($10,000 * 1.3%)

d) At the end of the year, the total value (after fees) of Alizeh's mutual fund:

Investment in mutual fund = $10,000

Annual return on investment = $700

Annual fees for mutual fund = ($130)

Total value =                         $10,570

The total amount at the end of the year is the sum of the Principal ,ROI and

the expense which is   $10,570

Mutual Fund/Investment

Given Data

Principal = $10,000Expense ratio = 1.3%Ratet = 7%

1. Let us find the ROI

= 7/00*10000

=0.07*10000

= $700

2. Let us find the fees/expense

= 1.3/100*10000

= 0.013*10000

= $130

hence the total amount at the end will be = 10,000+700+130 =   $10,570

learn more about mutual funds here:

https://brainly.com/question/25300925

Who benefits from digital technology?

Answers

Answer:

Well, the answer is simple. Everybody!

Explanation:

what is the essence of proper nutrition?​

Answers

Answer:

Proper nutrition is about balance, and that means not getting too much of certain ingredients, such as sodium, or salt. Sodium increases blood pressure, which raises the risk of heart disease and stroke.

Explanation:

Answer:

Explanation:

Most people know good nutrition and physical activity can help maintain a healthy weight. But the benefits of good nutrition go beyond weight. Good nutrition can help: Reduce the risk of some diseases, including heart disease, diabetes, stroke, some cancers, and osteoporosis.

Wires,plugs,speakers, chis are all examples of what

Answers

Answer:

Ch1kenT3nders

Explanation:

plzzzz help!!!


Drag the tiles to the appropriate buckets.
Which functions do each of the following perform?

Answers

Answer:

Record:

"Contains information related to a specific person or other entity"

Report:

"Is generated by running a query"

"Can be in the form of a table or a graph"

Querie:

"Is used to retreieve information from a database"

"Can contain filters"

"Appears horizontally in a table"

Explanation:

THE ONES THAT I UNDERLINED ARE THE ONES IM UNSURE ABOUT

Answer:

Record -

Contains information related  to a specific person or  other entity

Appears horizontally in a table

Report -

Is generated by running  a query

Can be in the form of a table  or a graph

Querie -

Is used to retrieve information  from a database

Can contain filters

Explanation:

I got it right on the Edmentum test.


The different parts of a video game won't mesh if the designers don't?

Answers

Answer:

Collaborate

Explanation:

I dont know to much about this particular subject, but Collaborate means to come together in agreement. If they can do that they should come together. If they dont collaborate, then it wouldnt come together.

I apologize if this is incorrect

Which of the following are picture adjustments that can be made to images?
A) Color saturation
B) Color tone
C) Color contrast
D) All of the above

Answers

Answer:

D - All of the above

Explanation:

Answer:

all of the above

Explanation:

you can use every single one of those to adjust an image!! :)

9.2 Code Practice: Question 2
Edit your solution from the previous array height problem by adding additional code that increases the value of the element at (0,2) by a value of 3, and then reprints the array

Expected Output
[[16, 17, 14], [17, 18, 17], [15, 17, 14]]]
[[16, 17, 17], [17, 18, 17], [15, 17, 14]]]

Answers

Answer:

height = []

height.append ([16, 17, 14])

height.append ([17, 18, 17])

height.append ([15, 17, 14])

print(height)

height[0][2] = height[0][2] + 3

print (height)

Explanation:

hope this helps!

The height problem is a sequential program and does not require loops, iteration and conditions.

The additional code segment  that adds 3 to the element at (0,2) is:

height[0][2] = height[0][2] + 3

To reprint the array, we make use of the following print statement:

print (height)

So, the complete program is as follows:

height = []

height.append ([16, 17, 14])

height.append ([17, 18, 17])

height.append ([15, 17, 14])

print(height)

height[0][2] = height[0][2] + 3

print (height)

Read more about sequential programs at:

https://brainly.com/question/13893632

The template code provided is intended to take two inputs, x and y, from the user and print "pass" if one or more of the following is true:

x is not less than 4
y is not greater than 5 and x + y is less than 7
However, when using De Morgan's law to simplify this code, the programmer has made some mistakes. Can you correct the errors so the code functions as intended?


Answers

I hate math so I couldn’t tell you but hope you can find an answer my guy!

In full verbatim, a person wants to say that they admitted him to a hospital last month. He makes a mistake about the date and quickly corrects himself. How should a correct sentence look like?

Answers

He should cancel the date and move to another country semis how he screwed up his work, hope this helped

Mary is a student that's always been helpful to other students and plays her part when group assignment is given and ensures that the group work is complete. Mary display good __________ skills.

Answers

Explanation:

..................are there no options?

Teamwork skills I would guess

PLEASE HELP WILL MARK FIRST CORRECT ANSWER BRAINLIEST!!!!!!!!!!~~~~~~~~~

Reese is creating a presentation. She wants to include a graphic of the steps that her department follows in the decision-making process. Which category of SmartArt would work best?

Picture
List
Hierarchy
Matrix

Answers

Answer:

C

Explanation:

Answer:

CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

Explanation:

Tell me everything that happened in the fortnight galactics event. WHO EVER HAS THE BEST EXPLANATION WILL GET BONUS POINTS AND WILL BE MARK BRAINLYNESS

Answers

Answer:

people still play fortnight?!?!

Explanation:

psn: Smallboy_life

what is something a computer scientist would do

Answers

Answer:Computer scientists solve problems using technology. They write and program software, create applications for mobile devices, and develop websites. Their primary objectives are to validate and to develop mathematical models capable of computer interaction between people and other computers.

Explanation:

how many of you got the right answer from this app​

Answers

actually, a lot, and it’s especially helpful when the answer is expert verified

La sección de lectores de un diario de la ciudad impone como única restricción para la publicación de las cartas, que el texto debe ser de 1500 caracteres. ¿Cuál será el tamaño en KB de un archivo txt que contenga ese texto?

Answers

Answer:

El tamaño de un archivo .txt que contenga esa cantidad de texto será de 1.46 KB.

Explanation:

Se entiende que todo caracter informático posee un tamaño de 1 byte, con lo cual en total el texto no puede superar los 1,500 bytes de tamaño.

Ahora bien, un kilobyte es una unidad de medida informática superior, que se compone de 1,024. Por lo tanto, dado que 1,500 - 1,024 es igual a 474, el tamaño del archivo será de 1 KB y 474 bytes. Así, para calcular el tamaño total del archivo en KB, se debe realizar el siguiente cálculo:

1,024 = 1

474 = X

((474 x 1) / 1,024) = X

0.46 = X

Así, el tamaño de un archivo .txt que contenga esa cantidad de texto será de 1.46 KB.

Selena made a diagram to compare and contrast transmitters and receivers.

A Venn diagram of two ovals. The left oval is labeled Transmitters. The right oval is labeled Receivers. There is an X inside the overlap.

Which label belongs in the area marked X?

Amplifies radio waves
Demodulates radio waves
Sends out radio waves
Captures radio waves

Answers

Answer:

A. Amplifies radio waves

Explanation:

e2021

Answer:

its A on ED

Explanation:

The
feature in Photoshop will help Franklin see the printed version of the document on the screen before he actually prints it.

Answers

Answer:

print preview

Explanation: platooo

Louis has two sets of two gears (Set A and Set B) that he is using to build two different machines. He has all the gears laying out separately, as shown in the diagram above. Then he puts the gears into the machines so that the gears in Set A are touching each other and the gears in Set B are touching each other. Use the information in the diagram to answer the question. After the gears have been touching for a while, which of the two bottom gears will be cooler, and why?

Answers

Answer: The larger bottom gear will be cooler than the smaller bottom gear, because the energy that transferred to it was spread out over more molecules.

Explanation: Thermale Energy

Answer:

The smaller bottom gear will be cooler than the larger bottom gear, because less energy has to transfer for the molecules to reach the same temperature as the molecules of the top gear.

Explanation:

what are yall favorite songs mine are all the stars by Kendrick Lamar, SZA


Clouded by Brent Faiyaz


Sundress by A$AP rocky


Broken clocks by SZA


drama by roy woods and drake


swimming pools Kendrick Lamar


Trust by Brent Faiyaz


B***h, Don’t Kill My Vibe kendrick lamar


they all made me feel like im in a movie yk

Answers

Answer:

Rehab by brent faiyaz

Hell by asap rocky

teen spirit by sza

fish by tyler the creator

snow by xxxtentacion

some of my favorites

also sundress is a great song

element by kendrick lamar

Explanation:

Answer:

What You Head Brent Faiyaz

Lost Kidz get money Brent Faiyaz

In Lust we trust Steve Lacy

Speed Kali Uchis

Body Language Kali Uchis

Lovely Brent Faiyaz

Hit Different Sza

and more

Explanation:

story to brighten your day :D
i was at a mall and a couple in the christmas area asked me if i could take them a picture and then i did and then they started kissing and a old man passsed bye and she was like there? and i said no lol so again i took another and her phone was so slow people went in the front and came out in it and then again they was kissing AND SOMEONE ELSE WENT IN FRONT and as just there like a stattueeee and then the 4 time i said ok this time and they was posing a kiss and then took like 3 pics HA-NKWDKW

Answers

pfftttt.

thats - just wow

Which term describes unjust behavior due to a person’s gender or race

Answers

Answer:

Discrimination

Explanation:

Answer:

Discrimination

Explanation:

Which one of the following four words is odd?

Peripheral
Programme
Application
Software

Answers

Answer:

Peripheral

Explanation:

It has nothing to do with the other words because it means that something is not as important as something else

Peripheral seems off since it’s unrelated to the other words and has no connection

simplify the expression below and state the value of m for which the simplified expression is not defined 2m² + m - 15/ m² - 9​

Answers

Answer:

The simplified expression is: [tex]\frac{2m-5}{m-3}[/tex]The simplified expression is undefined for m=3

Explanation:

The given expression is:

[tex]\frac{2m^2+m-15}{m^2-9}[/tex]

The numerator can be siplified by using factorization and denominator will be simplified using the formula

[tex]a^2-b^2 = (a+b)(a-b)[/tex]

So,

[tex]= \frac{2m^2+6m-5m-15}{(m)^2-(3)^2}\\=\frac{2m(m+3)-5(m+3)}{(m-3)(m+3)}\\=\frac{(2m-5)(m+3)}{(m-3)(m+3)}\\=\frac{2m-5}{m-3}[/tex]

A fraction is undefined when the denominator is zero. In order to find the value of m on which the simplified fraction will be undefined we will put denominator equal to zero.

So,

[tex]m-3 = 0 => m = 3[/tex]

Hence,

The simplified expression is: [tex]\frac{2m-5}{m-3}[/tex]The simplified expression is undefined for m=3

what is electro magnetism

Answers

Answer:

Electromagnetism is a branch of physics involving the study of the electromagnetic force, a type of physical interaction that occurs between electrically charged particles

Explanation:

Answer:

malay ko di ko alam sagot dyan eh kaya isip ka rin ghourl

Other Questions
what is an atomic element of carbon A TV store buys TV's for $250 each, and then increases the price by 120%. What is the sales price of a TV at this store? During photosynthesis, plants capture light energy and form carbon-containing molecules, such as glucose. Which is not a use for glucose PLZ HELP ME WILL GIVE BRAINILEST TO THE FIRST PERSON WHO ANSWERS;)Which expression is shown by the model?Answers: A. 28 + 14 = 7 (4 + 14)B. 28 + 14 = 4 (7 + 2)C. 28 + 14 = 4 (14 + 28)D. 28 + 14 = 7 (4 + 2) Solve for m: -8 = m/-10 - 16 Geometry homework. Please help. Acid rain is caused by Whats A Sentence for Dependance ? How many terms are in the following algebraic expression?5x + 3y 10012345Help plz guys Which proportion would be used to solve the following problem. The proportion of turtles to alligators at the reptile park is 5:9. Since Bethcounted 45 turtles, how many alligators are there? Nasreen was babysitting her cousin on Saturday.She brought him to the park and spent $4.25 atthe ice cream truck. If she was paid $30.00 forbabysitting, how much did Nasreen profit for theafternoon? What type of reaction does the following equation represent?FeS+2HClFeCl2+H2SA. synthesis reactionB. double-displacement reactionC. single-displacement reactionD. decomposition reaction What was the climate like in the New England colonies?A) Hot and HumidB) Cold and Harsh all yearC) Cold, Harsh winters Details usually_____the main idea in your paragraph.A. come afterB. distract fromC. come beforeD. are nowhere near The table shows the linear relationship between the number of hours Francis worked, x, andthe amount of money Francis earned, y. A trade-in is most closely related to which of the following?a.A down payment, because it reduces the amount financed.b.An interest payment, because it represents value given to the dealer.c.The list price, because it is derived from the price of a car.d.Amortization, because it is a way of paying for car financing. Read the excerpt from Amy Lowells "Lilacs." What is the form of the poem?Lilacs,False blue,White,Purple,Color of lilac,You have forgotten your Eastern origin,The veiled women with eyes like panthers,The swollen, aggressive turbans of jeweled Pashas.Now you are a very decent flower,A reticent flower,A curiously clear-cut, candid flower,Standing beside clean doorways,Friendly to a house-cat and a pair of spectacles,Making poetry out of a bit of moonlightAnd a hundred or two sharp blossoms.Maine knows you,Has for years and years;New Hampshire knows you,And MassachusettsAnd Vermont.A. blank verseB. free verseC. lyricD. narrativeE. descriptive 20 POINTS!!!!!!Which of the following is probably not an effect of urban sprawl?A. the loss of habitats and biodiversityB. decreased shortages of water and other resourcesC. increased temperatures in summer monthsmore air pollution that is harmful to human healthPlease select the best answer from the choices providedABCD What is the measure of ZRST? Choose the term that best completes each sentence. abstraction hides the details about a specific piece of information. abstraction hides the details about a specific process. dataprocedural