need help plz I need this by today because it's due Tomorrow

Need Help Plz I Need This By Today Because It's Due Tomorrow

Answers

Answer 1
Dale's earnings for 52 weeks were
.. income = 52*985 = 51,220
Dale's withholding was
.. tax paid = 0.16*51,220 = 8195.20

According to the 3rd row of the table, Dale owes 8,770 in taxes, so must pay an additional
.. $8770 -8195.20 = $574.80

Dale owes $574.80.

Related Questions

What are the 3 steps for factoring completely?



2. How did the technique of “Factoring by Grouping” get it’s name?



3. How can you tell if Factoring by Grouping works for a problem?



4. What is a perfect square trinomial?



5. a.) How can you tell if a binomial is the difference of two squares.



b.) What is the factored form of the difference of two squares.



6. How do you find the zero’s of a polynomial function?

Answers

The three steps in Factoring Completely are:

Factor a GCF from the expression, if possible. 
Factor a Trinomial, if possible. 
Factor a Difference Between Two Squares as many times as possible.
Final answer:

Factoring completely involves three steps: identifying the GCF, applying the appropriate factoring method, and checking for additional factors. Factoring by grouping is used when there are four terms in an expression and common factors can be factored out separately. An example is given to illustrate the factoring by grouping process.

Explanation:Factoring Completely:Identify the greatest common factor (GCF) of the terms in the expression and factor it out.Apply the difference of squares, trinomial, or grouping method to factor the remaining expression.Check if there are any additional factors that can be factored further.Factoring By Grouping:

This technique is used when there are four terms in an expression and there is a common factor between the first two terms and the last two terms. The common factor is factored out separately from the two pairs, and then the resulting binomials are factored further.

Factoring by Grouping Example:

Consider the expression 2x + 3y + 4x + 6y. In this case, we can group the terms as (2x + 3y) + (4x + 6y). Common factors can be factored out separately, resulting in (2x + 3y)(1 + 2).

Learn more about Factoring Completely here:

https://brainly.com/question/29012163

#SPJ12

The manager of a video game store found that 35 of the 140 people who preordered the latest baseball game canceled their orders the day before the game was released. He used that data to create a simulation to predict the probability that future customers will cancel their preorders.

Answers

Using the data presented in the problem, you are asked to predict the probability that future customers will cancel their preorders. To find the probability, you have to divide the number of people who cancelled their preorders by the total number of people who preordered.

35 people / 140 people = .25 or 25% probability that the future customers will cancel their preorders.

Answer:

A

Step-by-step explanation:

In a normal distribution, the mean is ____ it's mean and mode

Answers

In a normal distribution, the median (I think you meant to say) is equal to the mean and mode.

Final answer:

In a normal distribution, the mean, median, and mode are all the same, since it is symmetric around the mean. The standard deviation affects the shape of the distribution, and the empirical rule states that most values lie within two standard deviations of the mean. Differences in symmetry may cause the mean, median, and mode to diverge, with the mean being most affected by skewness.

Explanation:

In a normal distribution, the mean is equal to the median and mode, by definition. This is because the normal distribution, which is also known as the Gaussian distribution, is symmetrically shaped like a bell curve around the mean (μ). The mean indicates the center of the distribution and the point of symmetry, while the median divides the data such that half of the values are above it and half are below. The mode is the most frequently occurring value in the data set, and in a perfect normal distribution, it coincides with the mean and median.

The standard deviation (σ) is a measure of the spread of the distribution. If the standard deviation is increased, the curve becomes wider and flatter, while a decrease in σ makes the distribution steeper and narrower. Additionally, the location of μ on the X-axis can shift the entire graph to the left or right, but the shape of the graph remains the same. The empirical rule helps us understand that approximately 95% of values lie within two standard deviations from the mean.

Drawing from the collaborative exercise provided, by recording the heights and creating histograms with smooth bell-shaped curves, one can calculate the mean and identify how characteristics such as skewness affect the mean, median, and mode, especially in non-symmetric distributions. In these cases, the mean can be influenced by the direction of the skew more than the median, pulling it towards the tail of the distribution.

What is the length of one leg of the triangle

Answers

Answer:

Step-by-step explanation:

The length measure of the second leg of the right-angle triangle is 12 units.

What is the measure of the missing leg length of the triangle?

Given the parameter:

Hypotenuse = 15 units

Length of leg1 = 9 units

Length of leg2 = x

To determine the measure of the missing side length of the right triangle, we use the Pythagoras theorem.

It is expressed as:

( hypotenuse )² =  ( leg 1 )² + ( leg 2 )²

Plug in the given values:

( 15 )² =  ( 9 )² + ( leg 2 )²

Simplifying, we get:

225 = 81 + ( leg 2 )²

( leg 2 )² = 225 - 81

( leg 2 )² = 144

Take the square roots:

leg 2 = √144

leg 2 = 12 units

Therefore, the second leg measures 12 units.

The question is not complete, the complete question is:

A right triangle's leg is 9 and the hypotenuse is 15, What is the length of of the other leg of the triangle?

Learn more about trigonometric ratio here: https://brainly.com/question/28038732

#SPJ3

write the rate as a fraction? 17 meters per second

Answers

Hey there!

I'm assuming this means the abbreviation for meters per second. The rate as a fraction would be 17m/s.

Hope this helped, have a great day!

What is the mode of the data set?

103, 77, 90, 102, 103, 81, 78, 84, 84, 87, 99, 103, 118

Question 3 options:

84


90


93


103

Answers

The mode is the number that shows up the most

103, 77, 90, 102, 103, 81, 78, 84, 84, 87, 99, 103, 118

reorder the numbers

77, 78, 81, 84, 84, 87, 90, 99, 102, 103, 103, 103, 118

103 shows up 3 times, one more than the next group (84)

103 is your answer

hope this helps
The answer i chose My answer is D 103

onsider the following pseudocode function. function Crunch(x R) if x ≥ 100 then return x/100 else return x + Crunch(10 · x) (a) Compute Crunch(4). Crunch(4) = (b) What happens if you try to compute Crunch(−23)? What does this suggest about an appropriate precondition for this function?

Answers

a) Crunch(4) = 4 +Crunch(40)
.. = 4 +40 +Crunch(400)
.. = 4 +40 +400/4
.. = 48

b) Crunch(-23) = -23 +Crunch(-230)
.. = -23 -230 +Crunch(-2300)
... terminates with overflow or memory exception

An appropriate precondition is x ≥ 0.

translation rule to describe the translation of x that is 3 units to the left and 4 units up

Answers

Translation rule: ( x - 3, y + 4 ). 
( x - 3, y + 4 ) is the answer


Some amount of billiard balls were arranged in an equilateral triangle. And 13 balls were extra. When the same set of billiard balls were arranged into triangle in which each side has one more ball than in the first arrangement there were 7 balls shortage. How many balls were at the set?

Please help if you absolutly know the answer!!!!!!!!!!!

Answers

The answer is 203 balls.

203 balls I'm sorry I did research over the night I'm sorry I gave you the wrong answer

How many times is function f called in the code segment below? 25 points?

Answers

what do you mean by saying below?

HELPPP PLLLZZZ III BEEEG

For what value of x is the square of the binomial x+1 twenty greater than the square of the binomial x–3?

Answers

Asked and answered elsewhere.
https://brainly.com/question/9124477

Answer:

x=3.5 they did nothing wrong but I am pretty sure you meant not twenty but one hundred and twenty for that the answer is x=16

Step-by-step explanation:

Which prefix means 1/10 of a unit in the metric system?

A. milli
B. Deci
C. Hecto
D. Centi

Answers

Centi because Deci means 10 while Centi is one tenth.

Which equation represents the general form a circle with a center at (–2, –3) and a diameter of 8 units?

A.) x^2+y^2+4x+6y-51=0

B.) x^2+y^2-4x-6y-51=0

C.) x^2+y^2+4x+6y-3=0

D.) x^2+y^2-4x-6y-3=0

Answers

First you need to use the standard form of a circle and then transform it into the general form of a circle.

Standard Form of a Circle.
[tex](x - h)^2 + (y - k)^2 = r^2[/tex]

To use the standard form of a circle, we need to know the center of the circle and the radius of the circle. Our center is at (-2, -3), which is (h, k). Our radius is half of the diameter, which the diameter is 8 so 8 / 2 = 4. So we have a radius of 4. 
In our Standard Form of a Circle, the h = -2 and the k = -3 and the 4 = r
Now we can turn this into the general form of a circle.

Insert our point (-2, -3) and our radius of 4 into the standard form of a circle equation and transform it into the general form.

[tex](x - h)^2 + (y - k)^2 = r^2[/tex]
[tex](x - (-2))^2 + (y - (-3))^2 =4^2[/tex]
[tex](x + 2)^2 + (y + 3)^2 = 4^2[/tex]
[tex](x + 2)^2 + (y + 3)^2 = 16[/tex]
Expand (x + 2)^2
[tex]x^2 + 4x + 4 + (y + 3)^2 = 16[/tex]
Expand (y + 3)^2
[tex]x^2 + 4x + 4 + y^2 + 6y + 9 = 16[/tex]
Move the 16 over to the left side by adding a - 16
[tex]x^2 + 4x + 4 + y^2 + 6y + 9 - 16 = 16 - 16[/tex]
[tex]x^2 + 4x + 4 + y^2 + 6y + 9 - 16 = 0[/tex]
Now arrange and combine like terms
[tex]x^2 + 4x + 4 + y^2 + 6y + 9 - 16 = 0[/tex]
Gathering all constant values
[tex]x^2 + 4x + y^2 + 6y + 9 -16 + 4 = 0[/tex]
Gathering all x and y values
[tex]x^2 + 4x + y^2 + 6y + 9 - 16 + 4 = 0[/tex]
[tex]x^2 + y^2 + 4x + 6y + 9 - 16 + 4 = 0[/tex]
Combining all constant terms
[tex]x^2 + y^2 + 4x + 6y + 9 - 16 + 4 = 0[/tex]
[tex]x^2 + y^2 + 4x + 6y - 3 = 0[/tex]
There is nothing else to combine so we have the general form of a circle, which is [tex]x^2 + y^2 + 4x + 6y - 3 = 0[/tex] so the answer is C

Answer: C
[tex]x^2 + y^2 + 4x + 6y - 3 = 0[/tex]


To find the equation, we will form the general equation of a circle and then will find the equation that matches the equation we formed.

General equation of a circle

The general equation of a circle is given as

[tex](x-h)^2+(y-k)^2 = R^2[/tex]

where, the (h, k) are the coordinates of the center of the circle, and R is the radius of the circle.

The correct option is c.

Given to uscircle with a center at (–2, –3) diameter of 8 units

To find

the equation of the circle that represents the general form of a circle with a center at (–2, –3) and a diameter of 8 units.

Radius of the Circle

Given that the diameter of the circle is 8 units. therefore,

[tex]\rm{ Radius\ of\ the\ circle =\dfrac{Diameter}{2} = \dfrac{8}{2}[/tex]

Equation of a circle

The equation of the circle that represents the general form of a circle with a center at (–2, –3) and a radius of 4 units can be found by substituting the values in the equation of a circle:

[tex](x-h)^2+(y-k)^2 = R^2[/tex]

Substituting the values,

[tex][x-(-2)]^2+[y-(-3)]^2 = 4^2\\\\ (x+2)^2+(y+3)^2 = 16[/tex]

[tex](x+2)^2+(y+3)^2 = 16\\\\ (x^2 + 4 + 4x)+(y^2+9+6y) = 16\\\\ x^2 + 4 + 4x+y^2+9+6y = 16\\\\ x^2 + 4x+y^2+6y = 16-4-9\\\\ x^2 + 4x+y^2+6y = 3\\\\ x^2 + 4x+y^2+6y -3 = 0[/tex]

Therefore, the equation which will be in the above form will be the equation we want. As we can see the above equation is similar to   option c.

Verification

To verify that we will plot the graph. The image given below represents the general form of a circle with a center at (–2, –3) and a diameter of 8 units.

Hence, the correct option is c.

Learn more about Circle:

https://brainly.com/question/11833983

By the Triangle Inequality Theorem, if two sides of a triangle have lengths of 6 and 13, what are the possible lengths of the third side?

Answers

The Triangle Inequality Theorem establishes that the length of the triangle is shorter than the sum of the two lenghts of the others two sides. Then, you have:

 a=6   (the lenght of a side of the triangle).
 b=13   (the lenght of a side of the triangle).
 c=x    (the length of the third side).

 Therefore:

 c<a+b
 c<6+13
 c<19

 The lenght of the third side is:

 (13-6)<c<19
 7<c<9

In this exercise we have to use the knowledge of triangles to calculate the value of the third side, so we have:

[tex]7

organizing the information given in the statement we find that:

a=6 b=13   c=x  

Recognition of the Pythagorean theorem we have that will be:

[tex]c

See more about triangles at brainly.com/question/25813512

4z - 7 in terms of z

Answers

The expression is already in terms of z. Nothing need be done.

It's 3/5 of the wall is made from brick how do you determine the height of the brick proportion of the wall

Answers

If 3/5 of the height is made of brick, multiply the total height by 3/5 to find the height of the brick portion.


_____
"Of" means "multiplied by", so
  (3/5) of the height is brick
means
  (3/5)*(the height) = height of brick portion

To find the height of the brick proportion of a wall, multiply the total wall height by the fraction representing the brick portion. For instance, if the wall is 220 cm high and 3/5 is brick, the brick portion's height would be 132 cm.

To determine the height of the brick proportion of the wall, you would need to know the total height of the wall first. Once you have the total height, you can calculate the height of the brick section by multiplying the total height by the fraction of the wall that is brick. For example, if 3/5 of the wall is made from brick, and the wall is 220 cm high, the calculation would be as follows:

Height of brick portion = Total height of the wall × Fraction of wall that is brick

Height of brick portion = 220 cm × (3/5) = 132 cm

Therefore, the height of the brick proportion of the wall would be 132 cm.

Find the x-intercepts (if any) for the graph of the quadratic function.
6x^2 +12x+5=0
Give your answers in exact form. Show your work

Answers

we have that

6x^2 +12x+5=0
to find the x intercepts resolve the second order equation

x=[-b(+-)√(b²-4ac)]/2a
x1=[-12(+)√(12²-4*6*5)]/12---> [-12(+)√(144-120)]/12
=[-12(+)√(24)]/12--------> -1+√24/12-----> -1+√6/6

x1=-1+√6/6
so
x2=-1-√6/6

see the graph in the attached figure

the answer is
the x-intercepts for the graph of the quadratic function in exact form are
x1=-1+√6/6
x2=-1-√6/6

The smallest angle in a triangle is 1/5 as large as the largest angle. The third angle is twice the smallest angle. Find the three angles.

Answers

6x=180
x=112.5 degrees
.2x=22.5 degrees
(.2x)= 45 degrees

Answer:

x + 5x + 2x = 180  

8x = 180  

x = 22.5 degrees ( smallest angle),  Largest Angle = 112.5 degrees and the third angle = 45 degrees

Let's call the smallest angle x.  Then the largest angle is 5x and then the third angle is 2x since it is twice the smallest angle.  We know that the sum of all the angles in a triangle is 180 degrees.

Step-by-step explanation:

if anyone needs someone to do there homework text yktv.sham on insta gram and ya can pay her thru cash.app

who is the fastest man alive?

Answers

His name is Usian Bolt, a Jamaican sprinter known as the fastest man in history...

Have a nice evening!
~Brooke❤️

Usain Bolt set world records for the 100-m and 200-m dashes with impressive maximum speeds and accelerations.

Usain Bolt of Jamaica set the world record for the men's 100-m dash in the 2008 Olympic Games in Beijing. He accelerated for 3.00 s to reach his maximum speed and maintained it for the race. Calculating his maximum speed and acceleration involves understanding his performance data.

For the 100-m dash, Bolt's maximum speed was approximately 12.19 m/s and his acceleration was 2.63 m/s². In the 200-m dash, his maximum speed using the same assumptions was 10.36 m/s. This insight into Bolt's remarkable athleticism showcases his exceptional speed and acceleration capabilities on the track.

this math problem is hard

Answers

The answer is c. because ½ square + ½ square is 1 square.

A student rolls a number cube whose six faces are numbered 1 through 6. What is the sample space for this experiment? S = {2, 4, 6} S = {1, 2, 3, 4, 5, 6} S = {6} S = {1, 2, 3, 4}


HURRY PLEASE HELP

Answers

S={1,2,3,4,5,6}
hope this helps

Answer: {1, 2, 3, 4, 5, 6}

Step-by-step explanation:

Sample space is the set of all possible outcomes for a certain experiment.

Given : A student rolls a number cube whose six faces are numbered 1 through 6.

Then, the possible outcomes of rolling it = 1, 2, 3, 4, 5, 6

Then , the sample space for this experiment = set of all possible outcomes

= {1, 2, 3, 4, 5, 6}

sinθ=1/4, 0<θ<90; cosθ

Answers

Try this option:
1. rule: if θ∈(0;90°), then cosθ>0 and sinθ>0;
2. using the rule and sin²θ+cos²θ=1, ⇒ cosθ=√(1-sin²θ)=√15/4.

answer:
[tex] \frac{ \sqrt{15}}{4}.[/tex]

solve equation (n-1)(n+6)(n+5)=0

Answers

the first step to solving this is to split the equation into the possible cases. when the product of factors equals 0, at least one of these factors is 0.
n - 1 = 0
n + 6 = 0
n + 5 = 0
now you need the equations for n
n = 1
n = -6 
n = -5
this tells us that the final solutions are the following:
n = -6, n = -5, n = 1
 1          2          3
let me know if you have any further questions
:)
Answer:
1, -6 and -5 

Explanation:
To solve the equation means to get the values of n which satisfy the given equation.
The equation given is:
(n-1) (n+6) (n+5) = 0
This equation will be true if any of the terms (brackets) is equal to zero.
This means that:
either n-1 = 0 .............> n = 1
or n + 6 = 0 ................> n = -6
or n + 5 = 0 ................> n = -5

Hope this helps :)

Which of the expressions below can be factor using the difference of squares method

Answers

25x^2 - 64y^2

The first thing you can do is look for a subtraction sign. The word difference implies subtraction, so you can rule out any expressions that add terms. Secondly, you can look for squares. 17x^2 - 23y^2 is a subtraction expression, but 17 and 23 are not squares. However, 25x^2 - 64x^2 is a subtraction expression and its terms are squares. 25 = 5x5, 64 = 8x8. Hope this helps!

Evaluate 0.3 y+\dfrac yz0.3y+zy​0, point, 3, y, plus, start fraction, y, divided by, z, end fraction when y=10y=10y, equals, 10 and z=5z=5z, equals, 5.


Answers

The first thing we must do for this case is to rewrite the expression.
 We have then:
 0.3y + y / z
 We evaluate for y = 10, z = 5:
 0.3 (10) + (10) / (5)
 3 + 2
 5
 Answer: 
 0.3y + y / z 
 For 
 y = 10 
 z = 5 
 the result is 5.

When [tex]\( y = 10 \) and \( z = 5 \)[/tex], [tex]\( 0.3y + \frac{y}{z} \) equals \( 5 \)[/tex].

Step 1 :

To evaluate the expression [tex]\(0.3y + \frac{y}{z}\) when \(y = 10\) and \(z = 5\)[/tex], follow these steps:

1. Substitute the given values of [tex]\(y\) and \(z\)[/tex] into the expression:

  [tex]\[0.3 \times 10 + \frac{10}{5}\][/tex]

2. Calculate each term separately:

  - [tex]\(0.3 \times 10 = 3\)[/tex]

  - [tex]\(\frac{10}{5} = 2\)[/tex]

3. Add the results:

  [tex]\[3 + 2 = 5\][/tex]

So, when [tex]\(y = 10\) and \(z = 5\)[/tex], the expression [tex]\(0.3y + \frac{y}{z}\) equals \(5\).[/tex]

Step 2 :

1. Multiply 0.3 by 10:

  [tex]\[0.3 \times 10 = 3\][/tex]

2. Divide 10 by 5:

  [tex]\[\frac{10}{5} = 2\][/tex]

3. Add the results:

  [tex]\[3 + 2 = 5\][/tex]

Thus, when [tex]\(y = 10\) and \(z = 5\)[/tex], the expression [tex]\(0.3y + \frac{y}{z}\) equals \(5\).[/tex]

"What is the value of-3|15-s|+2^3 when s-=3"?

Answers

You probably made a typing error in writing s = -3 and wrote s - = 3 instead.

The given expression is:

[tex]-3|15-s|+ 2^{3} \\ \\ -3|15-s|+8 [/tex]

Substituting the given value of s in the previous equation, we get:

[tex]-3|15-(-3)|+8 \\ \\ =-3|15+3|+8 \\ \\ =-3|18|+8 \\ \\ =-54+8 = -46[/tex]

Thus the value of given expression becomes -46 for s = -3

The average of 25, 29, and x is 29. Find x.

Answers

29 * 3 = 87

25 +29 = 54

x = 87 - 54 = 33
x = 33

29 * 3 = 87

25 +29 = 54

x = 87 - 54 = 33

x = 33

If the sum of six consecutive even integers is 354 what is the smallest of the six integers

Answers

X=smallest number

X+x+2+x+4+x+6+x+8+x+10=354
6x+30=354
6x=324
X=54

Complete the expansion of (a + b)6 with a = 1 and b = 0.3.
(dont add everything together)
(1 + 0.3)^6 = (____)^6 + 6(____)^5(____) + 15(____)^4(____)^2 + 20(____)^3(____)3 + 15(____)^2(____)^4 + 6(___)(___)^5 + (____)^6

Answers

(1+0.3)^6=(1)^6+6(1)^5(0.3)+15(1)^4(0.3)^2+20(1)^3(0.3)^3+15(1)^2(0.3)^4+6(1)(0.3)^5+(0.3)^6

(1+0.3)^6=1+6(1)(0.3)+15(1)(0.09)+20(1)(0.027)+15(1)(0.0081)+6(0.00243)+0.000729

(1+0.3)^6=1+1.8+1.35+0.54+0.1215+0.01458+0.000729

Answer:

[tex](1+0.3)^{6}=(1)^6+6(1)^{5}(0.3)+15(1)^{4}(0.3)^{2}+20(1)^{3}(0.3)^{3}+15(1)^{2}(0.3)^{4}+6(1)^{1}(0.3)^{5}+(0.3)^{6}[/tex]

Step-by-step explanation:

This is an expansion of the expression [tex](a+b)^{6}[/tex]. In general you can expand expressions of this form by a formula known as the binomial theorem. This formula establishes that

[tex](a+b)^{n}=\sum_{k=0}^{n} {n\choose k} a^{n-k}b^{k}[/tex]

Where the coeficients [tex]n\choose k[/tex] are called binomial coeficients, and can be computed by the formula

[tex]{n\choose k} =\frac{n!}{(n-k)! k!}[/tex]

where [tex]n!=1\times 2\times 3\times \cdots\times n[/tex].

-3x = 4y = 8

X and y intercepts of this equations . Then graph line

Answers

Divide by the constant on the right to put the equation into intercept form.
.. -3x/8 +4y/8 = 1
.. x/(-8/3) +y/2 = 1

The intercepts are (-8/3, 0) and (0, 2).
Other Questions
Zakir loans Panji $20,000 for one year at 8% simple interest. Three months later, Zakir sells the note to Ben at a simple discount rate of 7 3/4%. How much does Ben pay for the note? What is 2/5? Please put it in simplest form. The stage of a virus where it is activated to perform the function for which it was intended is referred to as the _________. select one:a. propagation phaseb. triggering phasec. execution phased. none of the above How many positive integers less than 1000 are divisible by exactly one of 7 and 11? Laura bought a square canvas to paint a picture of her cat one side measured 22 centimeters what is tha area of the canvas A box is filled with black (B), white (W), red (R), green (G), and pink (P) phone cases. A phone case is selected at random.What is the sample space for this experiment?S = {B, W, R}S = {B, W, R, G, P}S = {G, P}S = {B, R, G, P}------Twenty-four students took a test. Fourteen students earned an A and 10 students earned a B. A student will be randomly chosen.What is the probability that the student earned an A on the last test?Enter your answer as a fraction, in simplest form, in the box. 30 POINTS AND WILL GIVE BRAINLIESTTerror and horror are completely different and not related.TrueFalse Will mark brainliest and give 20 points! In what ways can vertical, horizontal, and oblique asymptotes be identified? Please use your own example to identify. "the term normally applied when two genes fail to assort independently is ________." Radio stations identify themselves by their position on the radio dial such as 90.1 and 93.3. This number is based on the number of waves or cycles that pass a fixed point in a specific unit of time. To which property of a wave does this identification number refer? A. frequency B. wavelength C. loudness D. amplitude You are working at the register at a grocery store during the busiest time of the day. A customer buys a mud of cheese for 4.62 and a box of crackers for 1.29. She hands you $6.00, and the register says she still owes $0.54. Since you were in a hurry, you made a mistake by typing the numbers in the wrong order. What mistake did you make? Human inputs of outdoor air pollutants occur mostly ____.a. in the desertsb. in urban areasc. in the mountainsd. in rural arease. along the oceans How can an electron in an atom lose energy to go from a higher energy level to a lower energy level? select one:a. it exchanges gravitational potential energy for kinetic energy.b. it loses gravitational potential energy.c. it releases a photon equal in energy to its own energy drop.d. it absorbs a photon equal in energy to its own energy drop.e. it loses kinetic energy? Name the type of symmetry for the figure.reflectionalrotationalrotational and reflectionalno symmetryDOES ANYONE HAVE THE WHOLE QUIZ???? Under the qin dynasty, the cultural hubs of china shifted from major cities to provincial towns. a. True b. False In a circle with a radius of 6 m, an arc is intercepted by a central angle of 74 radians. What is the arc length? Use 3.14 for . Enter your answer as a decimal in the box. What is the area of a sector with a central angle of 3pi/5 radians and a diameter of 21.2cmUse 3.14 for pi and round to the nearest hundredthCm2 When you jump vertically off the ground, when you reach your highest point your velocity is zero and your acceleration is zero? why did Russia join ww1 Abigail flipped a coin 20 times, and it landed with heads facing up 13 times. What percent of the coin flips landed with heads facing up.