if the length of the rectangle is twice the width and the perimeter of the rectangle is 30 centimeters what is the length of the current width of the rectangle

Answers

Answer 1
If the perimeter equals 30 and the length is twice the width, then the length is equal to 20 and the width is equal to 10.


Related Questions

Which ordered pairs are on the line with the equation y+3.5=0.75(x-2)? I will mark brainliest. Thanks!

Answers

Hey! So all you have to do for this question is input the x- and y- values into the equation and simplify:
point 1: (1, 1.75)
y + 3.5 = 0.75 (x - 2)
(1.75) + 3.5 = 0.75 ((1) - 2)
5.25 = 0.75 (-1)
5.25 = -0.75  --> since these are not equation, (1, 1.75) is not correct.

Point 2: (-4, -8)
y + 3.5 = 0.75 (x - 2)
(-8) + 3.5 = 0.75 ((-4) - 2)
-4.5 = 0.75 (-6)
-4.5 = -4.5  --> this is correct because both sides are equal

Point 3: (7, 5.5)
y + 3.5 = 0.75(x - 2)
(5.5) + 3.5 = 0.75((7) - 2)
9 = 0.75(5)
9 = 3.75  --> not equal so not correct

Point 4: (4, -2)
y + 3.5 = 0.75(x - 2)
(-2) + 3.5 = 0.75(4 - 2)
1.5 = 0.75( 2)
1.5 = 1.5  --> equal so correct

So (-4, -8) and (4, -2) are your answers! Hope this helped :)       

come back and mark him brainliest

-lemons 2021

The length of a quarter is 0.955 inch.Round the length of a quarter to the nearest tenth of an inch

Answers

0.955 rounded to the nearest tenth is 0.1

0.955 rounded to the nearest tenth would be 1.0


In the problem 17- 8= 9, the number 9 is the ____________

Answers

In the problem 17 - 8 = 9, the number 9 is the difference because it is the solution of a SUBTRACTION equation.

In the subtraction problem 17 - 8, the number 9 is the difference, which is the result obtained after subtracting 8 from 17.

In the problem 17 - 8 = 9, the number 9 is the difference. In subtraction, the difference is the result of subtracting one number from another. Here, when we subtract 8 from 17, we get the difference of 9. This is because 17 is the minuend (the number from which another number is subtracted), 8 is the subtrahend (the number that is to be subtracted), and 9 is the difference (the result of the subtraction).

What is the area of a rectangle with vertices at ​ (−6, 3) ​, ​ (−3, 6) ​ , (1, 2) , and (−2, −1) ? Enter your answer in the box. Do not round any side lengths.

Answers

the answer is 258 only because of 1

3x - 4y = 7 , for x

15y + 1 = x , for y

Answers

3x - 4y = 7 ; Solve for x

We're essentially just trying to get "x" onto it's own side.

So, in order to do this, we must get "y" onto the other side of our equal sign.

Add 4y to both sides.

3x = 4y + 7

Then, we divide 3 from both sides.

x = 4/3y + 7/3

15y + 1 = x ; Solve for y.

Instead of solving for x, we are now solving for y :)

So, in order to isolate y, we must subtract 1 from both sides.

15y = x - 1

Then, divide both sides by 15.

y = 1/15x - 1/15

~Hope I helped!~

The circle design a class which represents a circle in the (x,y) coordinate plane. a circle object is initialized with three input arguments. the center of the circle specified as the first two inputs (x,y) and the radius of the circle. by default the circle will be centered at (0, 0) with a radius of 1. c = circle(0, 0, 1) the circle class should provide proper getters/setters for the x and y coordinates of the center as well as the radius. the circle should also have a getarea() and getperimeter() method. finally, the circle should have a method called, ispointwithincircle(x, y) which takes as augments the x and y coordinate of a point and determines whether the point lies within the circle. it should return a boolean indicating whether the point is within the circle.

Answers

The circle design a class which represents a circle in the (x,y) coordinate plane.

What is a circle?

It is described as a set of points, where each point is at the same distance from a fixed point (called the centre of a circle)

from math import dist # to calculate distance between two points

# defining class circle

class Circle:

   # constructor of Circle

   # with default parameters

   def __init__(self, x_coord=0, y_coord=0, radius=1):

       self.centre_x = x_coord

       self.centre_y = y_coord

       self.radius = radius

   # getters

   def getX(self):

       return self.centre_x

   def getY(self):

       return self.centre_y

   def getRadius(self):

       return self.radius

   # setters

   def setX(self, x):

       self.centre_x = x

   def sety(self, y):

       self.centre_y = y

   def setRadius(self, r):

       self.radius = r

   # function to calculate and return area

   def getArea(self):

       return 3.141*(self.radius**2)

   # function to calculate and return perimeter

   def getPerimeter(self):

       return 2*3.141*self.radius

   # calculates the distance between circle centre and

   # given coordinates

   # returns true if distance is less than radius

   def isPointWithinCircle(self, x, y):

       return dist([self.centre_x, self.centre_y], [x, y]) < self.radius

c1 = Circle(3, 3, 7)

c2 = Circle()

print("First Circle perimeter: " + str(c1.getPerimeter()))

print("First Circle area: " + str(c1.getArea()))

c2.setX(3)

c2.sety(3)

c2.setRadius(2)

if c2.isPointWithinCircle(4, 3.7):

   print("(4, 3.7) is within circle two")

else:

   print("(4, 3.7) is not within circle two")

print("Moving second Circle")

c2.setX(3+c2.getX())

if c2.isPointWithinCircle(4, 3.7):

   print("(4, 3.7) is within circle two")

else:

   print("(4, 3.7) is not within circle two")

Thus, the circle design a class which represents a circle in the (x,y) coordinate plane.

Learn more about circle here:

brainly.com/question/11833983

#SPJ2

Please help it’s due tomorrow! I’m in a hurry!! Omg pls help! :( ahhhhhhhhhhh

Answers

Check out the attached image for the full two-column proof. Feel free to ask any questions you have. The proof hopefully is self-explanatory. The only thing I would like to make a note on is a "linear pair" is where you have two angles that are adjacent (touching each other) and they form a straight angle. Those properties apply to angle 1 and angle 3, which is why they are a linear pair. So that points to them being supplementary (they add to 180 degrees).

Circle P is tangent to the x-axis and the y-axis. If the coordinates of the center are (r, r), find the length of the chord whose endpoints are the points of tangency.

Answers

Answer:  The length of the chord AB is √2 r units.

Step-by-step explanation: Given in the question that Circle P is tangent to the X-axis at the point A and tangent to the Y-axis at the point B.

Also, the co-ordinates of centre of the circle P are C(r, r). See the attached image below.

We are to find the length of the chord AB, with end-points A and B as the points of tangency.

From the figure, we note that

the co-ordinates of the points A and B are  (0, r) and (r, 0) respectively.

As the X-axis and Y-axis are perpendicular to each other, so the lines parallel to them, OB and OA are also perpendicular to each other.

That is, ∠ACB = 90°.

This implies that the triangle ACB is a right-angled triangle.

Now, using Pythagoras theorem in ΔACB, we have

[tex]AB^2=CA^2+CB^2~~~~~~~~~~~~~~~~~~~~~(i).[/tex]

The lengths of the line segments CA and CB are calculated, using distance formula, as follows:

[tex]CA=\sqrt{(0-r)^2+(r-r)^2}=\sqrt{r^2}=r,\\\\CB=\sqrt{(r-r)^2+(0-r)^2}=\sqrt{r^2}=r.[/tex]

From equation (i), we get

[tex]AB^2=r^2+r^2\\\\\Rightrarrow AB^2=2r^2\\\\\Rightarrow AB=\sqrt2r~\textup{units}.[/tex]

Thus, the length of the chord AB is √2 r units.

Final answer:

A circle, tangent to the x-axis and y-axis, forms a square where its radius r is the side length. The chord, which is the diagonal, can be found using the Pythagorean theorem resulting to r√2.

Explanation:

In the given problem, a circle P is tangent to the x-axis and y-axis at two points. This means that the radius of the circle is the distance from the center to either axis, which are both r, as the coordinates of the center are (r,r). We are asked to find the length of the chord whose endpoints are the points of tangency.

The chord is actually the diagonal of a square that has sides of length r. So, its length can be found using the Pythagorean theorem (a^2 + b^2 = c^2), where a and b are the lengths of the sides of the square and c is the diagonal. Hence the length of the chord can be found as √(r^2 + r^2) = √(2r^2) = r√2.

Learn more about Circle Geometry here:

https://brainly.com/question/35055577

#SPJ11

The bakers Healthy Bakery make 250 bagels in 10 hours. How many bagels can they bake in 12 hours? What was that rate per hour?

Answers

250/10 = 25 bagels per hour

25*12 = 300 bagels in 12 hours

Compare the two statements;
250 bagels=10 hours
Y=12 hours
I represented the unknown with Y. Cross and multiply. Y will multiply 10 to give 10Y and 12 will multiply 250 to give 3000. That will be;
10Y=3000
Divide both sides by 10. You will have;
Y=3000/10
Y=300
300 bagels will be made in 12 hours

To get the number of bagels per hour, divide the number of bagels by the number of hours. That will be;
300/12=25
OR
250/10=25
Hope that helped. Have a nice day

If Adela has 12.4 L of diesel and Madison has 840 cL of diesel, how much does the pair have altogether?

Answers

The total volume of diesel that the pair have altogether is equal to 20.8 L.

What is measurement?

Measurement is a process through which the size, magnitude, volume or other physical quantities that are associated with an object or chemical substance are taken, especially for the purpose of a scientific research (experiment).

In order to determine the total volume of diesel that they have, we would convert the value in centiliter (cL) to liter (L) and then add them together as follows:

840 cL to L = 840/100 = 8.4 L.

Total = 8.4 + 12.4

Total = 20.8 L.

Read more on liters here: https://brainly.com/question/277659

#SPJ1

Manny and Emma are both competing in a long jump competition at their school .mang can jump for fifths of the distance that Emma can jump . many can jump 40 inches how far can Emma jump

Answers

divide 40 by 4/5 =

40*5/4 = 200/4 =50

 Emma can jump 50 inches

Twice a number minus a second number is -1. twice the second number added to three times the first number is 9. find the two numbers

Answers

let the first number be X
and the second be Y
so 2x-y= -1 ---------(1)
2y+3x=9 ______(2)
solve the simultaneous eqn
from eqn (1) y= 2x+1 _____(3)
sub eqn (3) into eqn(2)
2{2x+1} +3x=9
4x+2+3x=9
7x=9-2=7
x=1
sub x=1 into eqn (3)

y=2(1)+1 = 2+1 =3

the two numbers are 1 & 3

In order to join a dancing club, there is a $30 startup fee and a $4 monthly fee. If you want to spend 1 year in the club, how much money did you spend?

Answers

Answer: $78

How?

Well let's first start off with the fee. It's $30, so lets add that to our total.

There are 12 months in a year, and $4 each month to stay in the club.

So 12 x 4 = 48

Then add the startup fee, $30, and you get a total of $78

Y’all I am struggling. Help me out please I’ll give 15 points! #7

Answers

Since the angles in triangle ACM indicate that it is a 30-60-90 triangle, we know that the other two sides of triangle ACM are 20 and 10 (30-60-90 triangles have a very specific side coefficient). This means that the sides of this triangle have side lengths 40, 10, and [tex]20\sqrt{3}[/tex]. Adding these together you get 50+[tex]20\sqrt{3}[/tex]. Hope this helps!

A van travels 300 miles on 15 gallons of gas. Find how many gallons the van needs to travel 360 miles. 72 gallons of gas 18 gallons of gas 23 gallons of gas 67 gallons of gas

Answers

simple first we find the miles per gallon

so 300/15=20 therefor he would only need a extra 3 gallons to go 360 miles so your answer is

B.18

Suppose there are n students in a class what is the probability at least two students have same birthday

Answers

I don't have enough info to solve this
P(at least two have same birthday) =
1 - (1/2)^(n).

Since no specific number of students is given, we only get an expression.

Wyatt uses 3/4 gallon of paint to paint two identical doghouses. Wyatt has 11/2 gallons of paint. Assuming that the doghouses are identical, ow many doghouses can Wyatt paint with 11/2 gallons of paint?

Answers

3/4 per 2 dh
1 1/2÷ 3/4 = 2
2 x 2 = 4 dh

I have a bag of trail mix. half of the bag contains peanuts, 1/4 of the bag is chocolate candies, and 1/4 of the bag is dried fruit. what is the probability that i will select a peanut?

Answers

Answer:

0.5 chance
1/2 chance 


Reason:

Half the bag is peanuts therefore there is half a chance you will pick one out

In traveling across flat land, you see a mountain directly in front of you. Its angle of elevation (to the peak) is 3.5°. After you drive 15 miles closer to the mountain, the angle of elevation is 9° (see figure). Approximate the height of the mountain. (Round your answer to one decimal place.)

Answers

check the picture below.

[tex]\bf tan(3.5^o)=\cfrac{y}{15+x}\implies 15+x=\cfrac{y}{tan(3.5^o)}\\\\\\ \boxed{x=\cfrac{y}{tan(3.5^o)}-15} \\\\\\ tan(9^o)=\cfrac{y}{x}\implies x\cdot tan(9^o)=y\\\\\\ \left[ \cfrac{y}{tan(3.5^o)}-15 \right]tan(9^o)=y \\\\\\ \left[ \cfrac{y-15tan(3.5^o)}{tan(3.5^o)} \right]tan(9^o)=y \\\\\\[/tex]

[tex]\bf \cfrac{y\cdot tan(9^o)-15tan(3.5^o)tan(9^o)}{tan(3.5^o)}=y \\\\\\ y\cdot tan(9^o)-15tan(3.5^o)tan(9^o)=y\cdot tan(3.5^o) \\\\\\ ytan(9^o)-ytan(3.5^o)=15tan(3.5^o)tan(9^o) \\\\\\ \stackrel{common~factor}{y}[tan(9^o)-tan(3.5^o)]=15tan(3.5^o)tan(9^o) \\\\\\ y=\cfrac{15tan(3.5^o)tan(9^o)}{tan(9^o)-tan(3.5^o)}[/tex]

make sure your calculator is in Degree mode.

the amount is small, but bear in mind that is mile units.

To solve such problems we must know about Tangent (Tanθ).

What is Tangent (Tanθ) ?

The tangent or tanθ in a right angle triangle is the ratio of its perpendicular to its base. it is given as,

[tex]\rm{Tangent(\theta) = \dfrac{Perpendicular}{Base}[/tex]

where,

θ is the angle,

Perpendicular is the side of the triangle opposite to the angle θ,

The base is the adjacent smaller side of the angle θ.

The height of the mountain is 1.495 miles.

Given to us

AB = 15 miles∠CAD = 3.5°∠CBD = 9°

In ΔCAD,

[tex]\rm{ tan(\angle A) = \dfrac{Perpendicular}{Base}[/tex]

[tex]tan(\angle A) = \dfrac{CD}{AD}[/tex]

[tex]tan(3.5^o) = \dfrac{CD}{15+x}[/tex]

[tex]CD=tan(3.5^o) \times(x+15)[/tex]

In ΔCBD,

[tex]\rm{ tan(\angle B) = \dfrac{Perpendicular}{Base}[/tex]

[tex]tan(\angle B) = \dfrac{CD}{BD}[/tex]

[tex]tan(9^o) = \dfrac{CD}{x}[/tex]

[tex]CD=tan(9^o) \times(x)[/tex]

Equating CD,

[tex]tan(3.5^o) \times (x+15) = tan(9^o) \times x\\\\(x+15)= \dfrac{tan(9^o) }{tan(3.5^o) }\times x\\\\x+15=2.59\ x\\15 = 2.59x-x\\15= 1.59x\\x = 9.44[/tex]

Substituting the value of x

[tex]CD=tan(9^o) \times(x)[/tex]

[tex]CD=tan(9^o) \times(9.44)\\CD= 1.495[/tex]

Hence, the height of the mountain is 1.495 miles.

Learn more about Tangent (Tanθ) function:

https://brainly.com/question/10623976

In a zoo there are 17 more monkeys than lions and 30 more lizards than lions. If there were 151 monkeys, lions and lizards in total, how many of each kind are there?

Answers

If the amount of monkeys is m, lions is a, and lizards is b, then a+b+m=151, 17+a=m (since there are 17 more monkeys than lions), and 30+a=b. Substituting those values in (17+a=m and 30+a=b), we have 30+17+a+a+a=151=47+3a. Subtracting 47 from both sides, we get 104=3a. Next, we can divide both sides by 3 to get 104/3=a (the number of lions), 104/3+17=the number of monkeys, and 104/3+30=the number of lizards. Somehow we end up with a fraction (not a whole number), so there are 2/3rds of monkeys floating around using this logic.


After the z value is calculated, the ____________ is obtained from a table of z-scores.

Answers

The critical value will be established. This is the point at which the researcher can reject the null hypothesis because the value falls outside the bounds at which the result was due to random chance. Values inside this bound show that the result cannot be determined to be due to the variables, so they cannot be used to reject the null hypothesis.
Final answer:

After the z value is calculated, the probability is obtained by using the corresponding area under the normal curve from the z-table. The z-table shows the area to the left of the calculated z-score and can be used to determine probabilities and critical values for the standard normal distribution.

Explanation:

After the z value is calculated, the probability is obtained from a table of z-scores. The z-table is used to find the area under the normal curve, which represents the probability associated with a z-score. When looking up a z-score in the z-table, you will see the area under the normal curve to the left of the z-score which corresponds to the probability of obtaining a score within that range. The z-table provides critical values for the standardized normal distribution which has a mean of 0 and a standard deviation of 1. To calculate the area between two z-scores, subtract the smaller area from the larger area.



For example, if we need to find the z-score that corresponds to an area of 0.9, we would look up this value in the z-table to discover that the z-score is approximately 1.28. This z-score then can be used with the mean and standard deviation of the distribution to find the original score using the formula μ + (z)(σ) = x. It's important to note that while most z-tables show the area to the left, some may provide the area from the mean to the z-score, so the method used will be indicated on the table itself.

To reduce laboratory​ costs, water samples from two public swimming pools are combined for one test for the presence of bacteria. Further testing is done only if the combined sample tests positive. Based on past​ results, there is a 0.009 probability of finding bacteria in a public swimming area. Find the probability that a combined sample from twotwo public swimming areas will reveal the presence of bacteria. Is the probability low enough so that further testing of the individual samples is rarely​ necessary?

The probability of a positive test result is _____.

Is the probability low enough so that further testing of the individual samples is rarely​ necessary?
A. The probability is quite​ low, indicating that further testing is necessary for all of the combined samples.
B. The probability is quite​ low, indicating that further testing is not necessary for any of the combined samples.
C. The probability is quite​ low, indicating that further testing of the individual samples will be a rarely necessary event.
D. The probability is quite​ low, indicating that further testing of the individual samples will not be a rarely necessary event.

Answers

i believe the answer is either b or c

Answer:

The probability of a positive test result is 0.017919

Option C is correct.

The probability is quite​ low, indicating that further testing of the individual samples will be a rarely necessary event.

Step-by-step explanation:

Probability of finding bacteria in one public swimming pool = 0.009

We now require the probability of finding bacteria in the combined test of two swimming pools. This probability is a sum of probabilities.

Let the two public swimming pools be A and B respectively.

- It is possible for public swimming pool A to have bacteria and public swimming pool B not to have bacteria. We would obtain a positive result from testing a mixed sample of both public swimming pools.

- It is also possible for public swimming pool A to not have bacteria and public swimming pool B to have bacteria. We would also obtain a positive result from testing a mixed sample of both public swimming pools.

- And lastly, it is possible that both swimming pools both have bacteria in them. We will definitely get a positive result from this too.

So, if P(A) is the probability of the event of bacteria existing in public swimming pool A

And P(B) is the probability of the event of bacteria existing in public swimming pool B

P(A') and P(B') represent the probabilities of bacteria being absent in public swimming pool A and public swimming pool B respectively.

P(A) = P(B) = 0.009

P(A') = P(B') = 1 - 0.009 = 0.991

Since the probabilities for each public swimming pool is independent of the other.

P(A or B) = P(A n B') + P(A' n B) + P(A n B)

= P(A)×P(B') + P(A')×P(B) + P(A)×P(B)

= (0.009×0.991) + (0.991×0.009) + (0.009×0.009)

= 0.008919 + 0.008919 + 0.000081

= 0.017919

Evidently, a probability of 0.017919 (1.7919%) indicates an event with a very low likelihood. A positive result is expected only 1.7919% of the time.

Hence, we can conclude that the probability is quite​ low, indicating that further testing of the individual samples will be a rarely necessary event.

Hope this Helps!!!

Marie worked 2 weeks during her college semester break. She earned $280 the first week and $245 the second week. If 1/2 oh her total earnings went to taxes and 1/4 went to college tuition,how much money dI'd she have left?

Answers

Hello!

280 + 254 = 525

525/2 = 262.5

Now, what's 1/4 of 262.5? 

262.5/4 = 65.625

So, she had $65.625 left! I hope you found this helpful! c:

I didn't get this one question right on a test. Could someone tell me what I did wrong? Plz and ty

Answers

8 - 5x <-2

8 (-8) - 5x < -2 (-8)

-5x < -10

-5x/-5 < -10/-5

x > 2            (flip the sign because you divided by a negative number

x = 3, 4, 5

your answer is 3, 4, 5

note that it isn't 2, because it isn't a ≥, which means that it cannot be 2

hope this helps


PB is a line segment on a number line. It has endpoints at -2 and 12. What is the coordinate of its midpoint?

Answers

well, first find the distance between the two numbers.
This can be done by adding the absolute values.

|12| + |-2| = 14.

mid = half

so what is half of 14? 7 is half of 14.

So, it is 7 less than the last point and 7 more than the first

-2 + 7 = 5
12 - 7 = 5

so, the midpoint is 5.
Hope this helps!

The equation of a line is −2x+5y=−20.

What is the x-intercept of the line?

Answers

to find the x intercept, sub in 0 for y and solve for x

-2x + 5y = -20
-2x + 5(0) = -20
-2x = -20
x = -20/-2
x = 10...so ur x int is 10 or (10,0) <==

The required solution of  the equation of a line is −2x+5y=−20 is x = 10.

What is equation?

An equation is a mathematical statement that is made up of two expressions connected by an equal sign. Equation, statement of equality between two expressions consisting of variables and/or numbers.

Given:

The given equation of a line is

−2x+5y=−20.

According to given question we have

BY the use of x- intercept put y=0 we get

-2x + 5y = -20

-2x + 5(0) = -20

-2x = -20

x = -20/-2

x = 10.

Therefore, the required solution of  the equation of a line is −2x+5y=−20 is x = 10.

Learn more details about equation  here:

https://brainly.com/question/10413253

#SPJ2

One more math question! Thanks!

Answers

the answer is 50. no guarantee  this is.
The answer is 3 hours

Does anyone know this??
The range of the following relation R {(3, −2), (1, 2), (−1, −4), (−1, 2)} is

A {−1, 1, 3}
B {−1, −1, 1, 3}
C {−4, −2, 2, 2}
D {−4, −2, 2}

Answers

The answer is D, because it is all of the y values. It only has 2 in there once because since it repeats, it doesn't need to be put in twice.

Jose receives a $10 gift card for downloading music and wants to determine how many songs he can purchase. Each downloaded song costs $1.19. Write and solve an inequality to determine how many songs Jose can purchase. What does the solved inequality represent?

Answers

Final answer:

To determine the number of songs Jose can purchase using his gift card, the inequality 1.19x ≤ 10 is solved, resulting in x ≤ 8.4, meaning Jose can purchase a maximum of 8 songs.

Explanation:

Jose's gift card scenario:

Let's denote the number of songs he can purchase as x.

The inequality to represent this situation is: 1.19x ≤ 10 (the total cost of the songs cannot exceed the value of the gift card).

Solving for x, we get x ≤ 8.4. Since he can't purchase a fraction of a song, Jose can purchase a maximum of 8 songs using the gift card.

PLEASE HELP ME!

Diana made a recipe that yields 6 and 1 over 2 cups. If each serving is 1 over 4 cup, which expression will help Diana determine the number of servings her recipe will yield?

Answers

6 1/2 divided by  1/4

6.5 /0.25 =26 servings

Other Questions
Raymond has a room that is 25 and a halg foot long he wants to cut it into 6 pieces that are equal in length how long will it peace be? Why and how did the legal and economic status of colonial women decline between 1650 and 1750? A person is able to pull a rope with a force of 700 N. What is the minimum number of fixed and moveable pulleys that the person will require to lift up a 27,800 N elephant? Assume the pulleys themselves are weightless and the system has 100% efficiency. What is 0.3 * 1.3 = ?Please help me! Escoge la mejor respuesta Hay influencia italiana y francesa en el espanol que se habla en Buenos Aires True or false? "Five score years ago, a great American, in whose symbolic shadow we stand today, signed the Emancipation Proclamation. This momentous decree came as a great beacon of light of hope to millions of Negro slaves who had been seared in the flames of withering injustice. It came as a joyous daybreak to end the long night of their captivity."identify the allusion in the passage then explain the effect of that allusion. Amber is going through puberty. she is noticing her breasts are growing and she is developing underarm and pubic hair. these changes are the development of A recipe for two dozen cookies calls for 1 1/3 cups of flour. How much flour would be needed to make five dozen cookies? Please show me how you got your answer explain. 1. Children are more likely to develop a sense of independence if they're given A. free time. B. time-out. C. punishment. D. choices. what is the approximate circumference of the circle shown below Unidad 1 Leccin 1 Presentaciones How were the ideas of northern abolitionists prevented from reaching the southerners? Why maintaining biodiversity has a direct economic value to humans what is scatterplot ? How where the etruscans were like parents to the romansnde? Marvin blows up a balloon but lets go of it. The air inside is released and the balloon goes up into the air. What best describes what happens? A) Gravity pushes the balloon into the air. B) Drag is caused by contact of the balloon with the air. C) Lift lowers the air pressure on the top of the balloon. D) The air pushes the balloon in the opposite direction. What is the pH of a 0.025 M [OH] solution?0.941.609.6012.40 What would lead to an increase in death rate and a decrease in birth rate as it nears earth's carrying capacity? Why do municipal water treatment plants not use distillation? Is the wavelength of a microwave longer or shorter than the wavelength of visible light? is the wavelength of a microwave longer or shorter than the wavelength of visible light? the wavelength of a microwave is longer than the wavelength of visible light. the wavelength of a microwave is shorter than the wavelength of visible light. the wavelength of a microwave is equal to the wavelength of visible light. submitmy answersgive up correct part b by how many orders of magnitude do the two waves differ in wavelength? by how many orders of magnitude do the two waves differ in wavelength? the two waves differ in wavelength by 1-2 orders of magnitude. the two waves differ in wavelength by 3-5 orders of magnitude. the two waves differ in wavelength by 8-10 orders of magnitude. the two waves differ in wavelength by 6-8 orders of magnitude? Steam Workshop Downloader