this is what I meant on my last question. sorry​

This Is What I Meant On My Last Question. Sorry

Answers

Answer 1

Answer:

its C

Step-by-step explanation:


Related Questions

for any normally distributed random variable with mean μ and standard deviation σ, the proportion of the observations that fall outside the interval [μ − σ, μ σ] is the closest to ______.

Answers

Approximately 31%. This is because the interval [μ − σ, μ + σ] encompasses approximately 68% of the observations in a normal distribution, leaving approximately 32% of the observations outside of this interval.

However, since the question specifies the interval [μ − σ, μ σ], which only covers half of the distance of [μ − σ, μ + σ], we can estimate that approximately half of the remaining 32% of observations will fall outside this interval, resulting in a proportion of approximately 16%. Adding this to the 68% within the interval gives us a total of approximately 84% of observations falling within two standard deviations of the mean. Therefore, the proportion of mean observations that fall outside the interval [μ − σ, μ σ] would be closest to 16%.

Learn more about mean here : brainly.com/question/31101410

#SPJ11

PLS ASAP will give brainlist!!!!

PLS ASAP will give brainlist!!!!

Answers

Answer:

288 cubic feet

Step-by-step explanation:

6x6= 36 that is for one base now multiply by 8 and get 288

1) Which polynomial identity would you use to factor the given expression? *
1-125n^3

Answers
1 Difference of Squares
2 Perfect Square
3 Difference of Cubes
4 Sum of Cubes

Answers

Answer:

I,dont know but use M A T H W A Y it will explain with all the stepp by step and answere

Step-by-step explanation:

Construction the augmented matrix that corresponds to the following system of equations

Construction the augmented matrix that corresponds to the following system of equations

Answers

SOLUTION:

We want to construct the augmented matrix for these equations;

\(\begin{gathered} 4x+\frac{4y-z}{3}=2 \\ 2(3z-7x)+y-3=1 \\ x-(7+z)=6y \end{gathered}\)

We start by writing the equations with variables on the right and constants on the left; multiplying equation 1 by 3, we have;

\(12x+4y-z=6\)

Expanding equation 2 and collecting like terms, we have;

\(\begin{gathered} 6z-14x+y-3=1 \\ -14x+y+6z=4 \end{gathered}\)

Expanding equation 3 and collecting like terms, we have;

\(\begin{gathered} x-7-z=6y \\ x-6y-z=7 \end{gathered}\)

Writing the 3 equations, we have;

\(\begin{gathered} 12x+4y-z=6\text{ }i \\ -14x+y+6z=4\text{ }ii \\ x-6y-z=7\text{ }iii \end{gathered}\)

Putting this in augmented matrix form we have;

\(\begin{bmatrix}{12} & {4} & {-1} & {6} \\ {-14} & {1} & {6} & {4} \\ {1} & {-6} & {-1} & {7} \\ {} & {} & {} & {}\end{bmatrix}\)

Which is the final answer

What is the value of x in the equation 5.5x = 17.6?
3.2
12.1
23.1
96.8

Answers

Answer:

3.2

Step-by-step explanation:

rephrase question to isolate the variable x

can do this is by dividing both sides by 5.5

5.5 ÷ 5.5 = 1 so:

x = 17.6 ÷ 5.5

3.2

Because:
5.5x=17.6
—— ——
5.5x 5.5x

X=3.2

Which of the z-values satisfy the following inequality?
2
7<
+ 3
2
Choose all answers that apply:
A
2 = 8
B
2 = 9
© z = 10

Which of the z-values satisfy the following inequality?27&lt;+ 32Choose all answers that apply:A2 = 8B2

Answers

Answer:The answer is 9 and 10?

Step-by-step explanation:

Which of the z-values satisfy the following inequality?27&lt;+ 32Choose all answers that apply:A2 = 8B2

Answer:

B and C                |   z=9   |   z=10     |

Step-by-step explanation:

Trust i got right

a critical value, z subscript alphazα, denotes the _______.

Answers

A critical value, z subscript alpha (zα), denotes the boundary or cutoff point for a statistical test where the level of significance, also known as alpha (α), is set.

A critical value, z subscript alpha (zα), denotes the value at which the probability of observing a test statistic in the tail(s) of the sampling distribution equals the pre-determined significance level (alpha).

The critical value can be defined as the value that is compared with the parameter value in the hypothesis test to determine whether the null hypothesis will be rejected. If the value of the parameter is less than the critical value, the null hypothesis is rejected.

However, if the measured value is higher than the critical value, reject the null hypothesis and accept the alternative hypothesis. In other words, cropping divides the image into acceptable and unacceptable areas. If the value of the index falls within the rejection range, the rejection of the fact is rejected, otherwise the negative hypothesis is rejected.

Learn more about Critical value:

brainly.com/question/30168469

#SPJ11

What is the measure of the smallest angle?
(Image)
67°
69°
52°
61°

Answers

The measure of the smallest angle is 52 degrees

How to determine the measure of the smallest angle?

The complete question is added as an attachment

From the question, we have the following parameters that can be used in our computation:

The triangle

The sum of angles in a triangle is 180

So, we have

2x + 3x - 11 + 2x + 9 =  180

Evaluate the like terms

7x = 182

So, we have

x = 26

This means that

2x = 2 * 26 = 52

3x - 11 = 3 * 26 - 11 = 67

Hence, the smallest is 52 degrees

Read more about angles at

https://brainly.com/question/25716982

#SPJ1

What is the measure of the smallest angle?(Image)67695261

Take the first 4 digits of your student number as the first number and the last 3 digits as the second number. Write the matlab code to find the greatest common divisor of these numbers using the Euclidean algorithm.

Answers

The required Matlab code to find the greatest common divisor of a number using the Euclidean algorithm is shown.

To find the greatest common divisor (GCD) of two numbers using the Euclidean algorithm in MATLAB, you can use the following code:

% Replace '12345678' with your actual student number

studentNumber = '12345678';

% Extract the first 4 digits as the first number

firstNumber = str2double(studentNumber(1:4));

% Extract the last 3 digits as the second number

secondNumber = str2double(studentNumber(end-2:end));

% Find the GCD using the Euclidean algorithm

gcdValue = gcd(firstNumber, secondNumber);

% Display the result

disp(['The GCD of ' num2str(firstNumber) ' and ' num2str(secondNumber) ' is ' num2str(gcdValue) '.']);

Make sure to replace '12345678' with your actual student number. The code extracts the first 4 digits as the first number and the last 3 digits as the second number using string indexing. Then, the gcd function in MATLAB is used to calculate the GCD of the two numbers. Finally, the result is displayed using the disp function.

Learn more about Matlab code  here:

https://brainly.com/question/30763780

#SPJ4

what is the probability of these events when we randomly select a permutation of {1, 2, 3, 4}? a) 1 precedes 4. b) 4 precedes 1. c) 4 precedes 1 and 4 precedes 2. d) 4 precedes 1, 4 precedes 2, and 4 precedes 3. e) 4 precedes 3 and 2 precedes 1.

Answers

The probability that these events when we randomly select a permutation is  24, 1/2, 1/2, 1/3, 1/4, 1/4

What is a probability simple definition?

A probability is a numerical representation of the likelihood or chance that a specific event will take place. Both proportions ranging from 0 to 1 and percentages ranging from 0% to 100% can be used to express probabilities.

What is the probability formula?

P(A) = n(A)/n (S)

The probability of an event "A" is P(A). The number of successful outcomes is n(A). The total number of events in the sample space is denoted by n(S).

1)  From the set we can select 4*3*2*1=24 permutations.

2) There are six permutations that begin with 1, three that begin with 2, three that begin with 3, and no permutations that begin with 4 when 1 comes before 4. So, P1 ={ 6+3+3+0}/{24} = 1/2

3) No permutations begin with 1, three permutations begin with 2, three permutations begin with 3, and six permutations begin with 4, where 4 comes before 1. P2=1/2 

4) There are no permutations that begin with 1, no permutations that begin with 2, no permutations that begin with 2, no permutations that begin with 3, and six permutations that begin with 4, where 4 comes before both 1 and 2. Therefore, P 3 = 1/3

​5) No permutations begin with 1, no permutations begin with 2, no permutations begin with 3, and there are six permutations that begin with 4, where 4 comes before 1, 2, and 3. So, P4= 1/4

​6) There are no combinations that begin with 1, three combinations that begin with 2, no combinations that begin with 3, and three combinations that begin with 4, where 4 comes before 3 and 2 comes before 1. So, P5= 1/4

To know more about probability click the following link :-

https://brainly.com/question/24756209

#SPJ4

what do you get when you take a jack-o’-lantern and divide its circumference by its diameter?

Answers

When you divide the circumference of a jack-o'-lantern by its diameter, you get the mathematical constant pi, which has many important applications in various fields of science and technology.

When you divide the circumference, you get a mathematical constant called pi, denoted by the symbol π. Pi is a non-repeating, non-terminating decimal that represents the ratio of the circumference of a circle to its diameter. Its value is approximately 3.14159, but it extends infinitely without repeating or terminating.

The fact that the ratio of the circumference of a circle to its diameter is always the same value, pi, is a fundamental concept in mathematics and has numerous applications in science, engineering, and technology.

To know more about mathematical constant pi:

https://brainly.com/question/30579390

#SPJ4

If p and q vary inversely and p is 29 when q is 25, determine q when p is equal to 5.

Answers

Answer:If p and q vary inversely, it means that their product remains constant. So we can set up the equation:

p * q = k

where k is the constant of variation.

Given that p is 29 when q is 25, we can substitute these values into the equation:

29 * 25 = k

725 = k

Now, let's determine the value of q when p is equal to 5:

p * q = k

5 * q = 725

Dividing both sides of the equation by 5:

q = 725 / 5

q = 145

Therefore, when p is equal to 5, q is equal to 145.

Step-by-step explanation:

Answer:p1q1=p2q2

q1=25,p1=29;

p2=5,q2=?;

q2=p1q1/p2;

q2=25*29/5;

q2=29*5;

q2=145.

Step-by-step explanation:

What is the value of the expression below if a=5, b=18, and c=8?


169 - a2

______ +24

b - c


Please help! I'm in a hurry

Answers

The value of the expression 169 - a² + 24b - c is 568.

How to calculate the value?

From the information, the expression that's given is 169 - a² + 24b - c.

In this case, the values of the variables have been given and you just need to slot them into the expression. This will be:

= 169 - a² + 24b - c.

= 169 - 5² + (24 × 18) - 8

= 169 - 25 + 432 - 8

= 568

Learn more about expression on:

brainly.com/question/2972832

#SPJ1

The continuous random variable V has a probability density function given by: 6 f(v) = for 3 ≤ ≤7,0 otherwise. 24 What is the expected value of V? Number

Answers

The expected value of the continuous random variable V is 5. The expected value of V is 5, indicating that, on average, we expect the value of V to be around 5.

To calculate the expected value of a continuous random variable V with a given probability density function (PDF), we integrate the product of V and the PDF over its entire range.

The PDF of V is defined as:

f(v) = 6/24 = 0.25 for 3 ≤ v ≤ 7, and 0 otherwise.

The expected value of V, denoted as E(V), can be calculated as:

E(V) = ∫v * f(v) dv

To find the expected value, we integrate v * f(v) over the range where the PDF is non-zero, which is 3 to 7.

E(V) = ∫v * (0.25) dv, with the limits of integration from 3 to 7.

E(V) = (0.25) * ∫v dv, with the limits of integration from 3 to 7.

E(V) = (0.25) * [(v^2) / 2] evaluated from 3 to 7.

E(V) = (0.25) * [(7^2 / 2) - (3^2 / 2)].

E(V) = (0.25) * [(49 / 2) - (9 / 2)].

E(V) = (0.25) * (40 / 2).

E(V) = (0.25) * 20.

E(V) = 5.

Therefore, the expected value of the continuous random variable V is 5.

The expected value represents the average value or mean of the random variable V. It is the weighted average of all possible values of V, with each value weighted by its corresponding probability. In this case, the expected value of V is 5, indicating that, on average, we expect the value of V to be around 5.

Learn more about random variable here

https://brainly.com/question/17217746

#SPJ11

7. Juan got his haircut for $15.00 and left a 15% tip. What is the total bill including the tip?

Answers

Answer:

17.25

Step-by-step explanation:

Answer:

$17.25

Step-by-step explanation:

You need to find the tip and add it to the original $15

15 + 15 x 15%

= 15 x 115%

= 15 x 115/100

= 1725/100

= 17.25

number 2, help plz i don’t get it

number 2, help plz i dont get it

Answers

Answer:

b

Step-by-step explanation:

2y + 40 and 60 are same- side exterior angles and sum to 180° , that is

2y + 40 + 60 = 180

2y + 100 = 180 ( subtract 100 from both sides )

2y = 80 ( divide both sides by 2 )

y = 40

B, what the other person said lol

A spinner is divided into 4 equal sections numbered 1 through 4. It is spun twice, and the numbers from each spin are added.

What is the probability that the sum is less than 6?

0.563
0.714
0.625
0.750

Answers

Answer:

0.625

Step-by-step explanation:

Since there are 4 options each time the spinner is spun, there are a total of \(4\cdot 4=16\) non-distinct sums possible when we spin it twice.

Out of these, the possible sums that meet the condition (less than 6) are 2, 3, 4, and 5 (since the smallest sum possible is 1+1=2).

Count how many ways there are to achieve each of these sums:

\(1+1=2\\\\1+2=3\\2+1=3\\\\2+2=4\\1+3=4\\3+1=4\\\\2+3=5\\3+2=5\\4+1=5\\1+4=5\)

Totally there are 10 ways to achieve a sum less than 6. Therefore, the desired probability is \(\frac{10}{16}=\frac{5}{8}=\boxed{0.625}\)

The T variant of the Quantium virus is spreading through Whoville, population 500,000. On the first day that the virus is detected, 100 Whos are found to be infected and 5 days later, the number of infected Whos is 800. (a) (1.5 pts) Approximately how many Whos will be infected 10 days after the virus is first detected

Answers

Therefore, approximately 1,491 Whos will be infected 10 days after the virus is first detected.

To approximate the number of Whos that will be infected 10 days after the virus is first detected, we can use the concept of exponential growth. We can use the formula for exponential growth:\(P(t) = P0 * (1 + r)^t,\) where P(t) is the population at time t, P0 is the initial population, r is the growth rate, and t is the time in days.

Let's calculate the growth rate (r) first:

r = (800 - 100) / 5

= 140 Whos per day

Now, we can calculate the approximate number of infected Whos 10 days later:

\(P(10) = 100 * (1 + 140/100)^{10\)

Using a calculator, we can compute this value:

\(P(10) ≈ 100 * (1.4)^{10\)

= 1491.03

To know more about approximate,

https://brainly.com/question/15804715

#SPJ11

I just need to know the answer for question 12

I just need to know the answer for question 12

Answers

Given:

The given inequalities are:

\(3x+1>7\text{ and 4x}\leq24\)

Solving first inequality, we get:

\(\begin{gathered} 3x+1>7 \\ 3x>7-1 \\ 3x>6 \\ x>\frac{6}{3} \\ x>2 \end{gathered}\)

Solving the second inequality, we get:

\(\begin{gathered} 4x\leq24 \\ x\leq\frac{24}{4} \\ x\leq6 \end{gathered}\)

Merging the solutions of both inequalities, we get:

\(\begin{gathered} x>2\text{ and x}\leq6 \\ \Rightarrow x\epsilon\text{ (2,6\rbrack} \end{gathered}\)

So, the graph will be a number line with an open circle at 2 and a closed circle on 6 and shading in between.

Therefore,

Option A is correct.

Factorise : 625² − 121² by using suitable identity​

Answers

Answer:

(625 - 121)(625 + 121)

Step-by-step explanation:

625² - 121² ← is a difference of squares and factors in general as

a² - b² = (a - b)(a + b)

then

625² - 121²

= (625 - 121)(625 + 121) ← in factored form

will give brainly
show work

23-5•4-2(6-1)

Answers

Answer:-7

Step-by-step explanation:

Answer:

-7

Step-by-step explanation:

so you have to do PEMDAS

first parenthesis 6-1 is 5

then multiplication 5x4 is 20

the subtraction  23-20-2(5)

2x5=10

23-20=3

3-10=-7

₁ d 4. Ca are not to scale): 3,4 cm 37 mm 3,2 cm 4,3 cm b) 0.3. Calculate the perimeter of the polygons in centimeters​

Answers

The Perimeter of Polygon Calculator is a free online tool that displays the perimeter of the regular polygon when the number of sides and the side length ...

Hey, guys this is a really long question and I am so lost and stuck, as well as confused on what to do. So, I've gotten my phone taken away many times in the past because my parents claim I am "texting too much"... They always gave it back to me after about a week, but a couple weeks ago, they took it away, saying that they would take it away forever until I am old enough to buy myself a phone with my own money. It's also not like I'm using my phone THAT MUCH, I'm in Middle School and I have a TON of things to get done giving me hardly any time to relax and call my friends or text them. I think they’re being extremely harsh about it and not fair. They also won’t budge if I try to convince them to let me have it back. I am convinced that they deleted my number so that I couldn’t “find my phone” for whatever reason and text people. All my calls from my friends' phones go to voicemail right away, texts don't ever go though. What should I do?

also i picked a random category which was math so.. :D

Answers

Answer:

Ask for it back nicely. Maybe make some offers that might persuade your parents to give your phone back (like chores). Also do nice things for them so that they want to help you more.

Step-by-step explanation:

It works for me most of the time.

The scores of an eighth-grade math test have a normal distribution with a mean mu = 83 and a standard deviation sigma = 5. if din’s test score was 92, which expression would she write to find the z-score of her test score? z = startfraction 92 minus 83 over 83 endfraction z = startfraction 83 minus 92 over 5 endfraction z = startfraction 92 minus 83 over 5 endfraction z = startfraction 5 minus 83 over 92 endfraction

Answers

The z-score is the ratio of the difference of sample and means to the standard deviation. Then the correct option is A.

What is a z-score?

The z-score is a numerical measurement used in statistics of the value's relationship to the mean of a group of values, measured in terms of standards from the mean.

The scores of an eighth-grade math test have a normal distribution with a mean of 83 and a standard deviation of 5. If the x is 92. Then the test score will be

The z-score will be given as

\(z = \dfrac{x - \mu}{\sigma }\\\\z = \dfrac{92 - 83 }{5}\)

More about the z-score link is given below.

https://brainly.com/question/15016913

Answer:

A

Step-by-step explanation:

edge 2022

Mary owned n sheep and Sam had exactly 4 times as many sheep as Mary. Mary buys 17 extra sheep and Sam sells 8 of his sheep. Sam still has more sheep than Mary. Form an inequality, in terms of n. Solve the inequality to find the least value of n.

Answers

Mary 's sheep=n

Sam's=4n

n+17<4n-8

17+8<4n-n

25<3n

8.333<n

least value= 8.4

PLS HELP ASAP PLS!!!

PLS HELP ASAP PLS!!!

Answers

Answer:−

-10x to the power 2 −17x+10

Step-by-step explanation:

Easy

Which statement about return migrants can most reasonably be inferred from the passage?

Answers

The inference is that the context clues are important to know the statement about return migrants can most reasonably be inferred from the passage.

What is an inference?

It should be noted that an inference is the conclusion that can be deduced based on the information given in the passage.

In this case, it's important to read and understand the story. It's also important to know the theme and central idea in the story.

Therefore, the inference is that the context clues are important to know the statement about return migrants can most reasonably be inferred from the passage.

Note that the information is incomplete and an overview will be given.

Learn more about inference on:

brainly.com/question/25280941

#SPJ1

In a class of 34 students, 19 of them are girls.
What percentage of the class are girls?
Give your answer to 1 decimal place

Answers

Step-by-step explanation:

Since we have given that

Total no. if students= 34

no. of girls = 19

so, percentage of the class are girls is given by

\( \frac{number \: of \: girls}{total \: number \: of \: students} = \frac{19}{34} \times 100 \\ = 55.88 \: percentage\)

Which of the following is not included in the cost of merchandise inventory? O Purchase discounts. O Purchase returns and allowances. O Purchase price of the inventory. O Freight costs paid by the seller. O Freight costs paid by the buyer. 4 pts 0 Question 2 Sunshine Cleaning purchased $3,500 worth of merchandise. The seller offered a 2% cash discount. Transportation costs for the buyer were an additional $310. The company returned $240 worth of merchandise and then paid the invoice within the discount period. The total cost of this merchandise is: O $3.570.00. O $3,500.00 O $3,332.00 O $3,430.00. $3,504.80 Question 5 A company has not sales of $759.300 and cost of goods sold of $548.300. Its not income is $10.280. The company's gross margin and operating expenses, respectively, are: O $211.000 and $230,750 $739.550 and $191,720 O $529,020 and $230.750 O $211.000 and $191,720 $230,750 and $529,020 4 pts D D Question 5 A company has not sales of $750,300 and cost of goods sold of $548,300. Its not income is $10.280 The company's groas margin and operating expenses, respectively, arm O $211,000 and $230,750 O $739,550 and $191,720 $529,020 and $230,750 O $211.000 and $191,720 O $230.750 and $529,020 Question 6 Sales less sales discounts, less sales returns and allowances equals: Cost of Goods Sold Net Income O Net Sales O Gross Profit 4 pts 4 pts Goods in transit are included in a purchaser's inventory: O At any time during transit. O After the half-way point between the buyer and seller, When the supplier is responsible for freight charges. When the goods are shipped FOB shipping point. OIf the goods are shipped FOB destination. Question 11 The inventory costing method that smooths out erratic changes in costs is: O LCM. O FIFO. OLIFO. O Specific Identification. O Weighted average. 4 t ne 0 Question 12 Krusty Krab has the following products in its ending inventory Compute lower of cost or market for inventory. applied separately to each product Inventory by Product Product Quantity Cost per Unit 500 $ 500 $ 30 600 Scuba Masks Scuba Sults O $265,000 O $290,000. O $250,000 $268,000 O $275,000. Question 13 Market per Unit $ 550 $ 25 If equity is $368,000 and liabilities are $186,000, then assets equal: O $554,000. $922,000. $368,000. $186,000. O $182,000. 2 pts

Answers

Question 1: The item not included in the cost of merchandise inventory is "Purchase discounts."

2: The total cost of the merchandise is $3,332.00.

5: The company's gross margin and operating expenses, are $211,000 and $191,720.

What is the cost of merchandise inventory?

Merchandise inventory expenses normally consist of the price paid for the inventory, deductions from the purchase price resulting from purchase returns and allowances, and freight expenses paid by the purchaser.

Although purchase discounts reduce the cost of merchandise inventory, they are not considered part of it. Instead, they are treated as a distinct discount in the accounting records.

Learn more about merchandise inventory from

https://brainly.com/question/27046371

#SPJ1

A website has 900,000 members. The number y of members increases by 8% each year.
a. Write an exponential function that represents the website membership after t years.
b. How many members will there be after 5 years? Round your answer to the nearest ten thousand.

a. y=
b. about (blank) members

Answers

1,156,530 members were in attendance in 2016. You can round it to $1,160,000.

What is an exponential function?The exponential function is represented mathematically by the formula F(x)=exp or e(x). Unless otherwise specified, the phrase generally refers to a real variable's positive-valued function, though it can also be applied to complex numbers and other mathematical objects like matrices and Lie algebras.One of mathematics's most crucial functions is the exponential function (though it would have to admit that the linear function ranks even higher in importance). As the independent variable in an exponential function, the exponent is used. F(x)=2x is a straightforward illustration.

Functions that take the form f(x) = axe are referred to as exponential functions. where an is a constant and x is a variable.

500,000 people are registered members of the website as of 2010.

Y members grew by 15% annually.

Members and year have an exponential relationship that is

y = 500,000(1.15)^t

Then in 2016 the number of members present are given by,

y = 500,000(1.15)^6 = 1,156,530.

Hence, 1,156,530 members present in 2016. It can rounded to 1,160,000.

The complete question is:

A website 500,000 members in 2010. The number y of members increases by 15% each year. Write an exponential growth function that represents the website membership t years after 2010. How many members will there be in 2016? Round your answer to the nearest ten thousands

To learn more about exponential function, refer to:

https://brainly.com/question/2456547

#SPJ1

Other Questions
What is a race prompt? After hearing about the death of his wife we sent a card to offer our pity or compassion or condolence or dommiseration Write the equations for f(x) and g(x). Then identify the reflection that transforms the graph of f(x) to the graph of g(x). can u guys help me.. please... its about past simple and present perfect Diego is trying to lift a piano to the second floor of his house. diego uses a pulley system and gives a big lift to the piano.the piano moves upward, then stops, and then it starts to fall to the ground. (the direction of the force of gravity is negative.) which list best describes the forces on the piano in the proper order? positive force balanced force negative force negative force balanced force positive force positive force unbalanced force negative force negative force unbalanced force positive force Why did the Stamp Act Congress meet in 1765?to form a new government for the coloniesto approve the taxes imposed by Parliamentto discuss how to respond to the new taxesto agree not to import British goods. Sarah makes a red hair bow using 2145 inches of ribbon. She makes a purple hair bow using 1814 inches of ribbon.How much more ribbon is used to make the red hair bow than the purple hair bow?Responses3320 in.3 and 3 over 20, in.31120 in.3 and 11 over 20, in.335 in.3 and 3 over 5, in.334 in. although, a sexual relationship between a therapist and a client is considered unethical, there are no explicit guidelines against it. true false A projectile is fired into the air at a 35o angle to the horizontal and an initial velocity of 120 m/s. what are the x and y components of the velocity vector? How did most large businesses see affirmative action once it was implemented by President Johnson's 1965 executive order Describe this painting in detail If 3 cups of sugar are used to make 12 cupcakes, how many cups of sugar are used to make 30 cupcakes Into which threat category does information warfare fall?A. StructuredB. Highly structuredC. CriticalD. Open-source identify two or more challenges merchant ships faced What comparison is being made through the authors use of figurative language in this excerpt keckley in behind the scenes Can i get the answer to this so i can help my sibling a pair of earrings has blue w3dges that are all the same size one earing has a 25 degree yellow wedge the other has a 14 degree yellow wedge find the angle measure of a blue wedge Find the length of a square with a perimeter of 80 yards question attached as photo In his experiments, J. J. Thomson discovered a tiny stream of particles.(Please answer all 5 questions) *Why did he conclude that these particles were negatively charged?*What were these particles eventually called?* According to Thomson, where are these particles located in the atom?*Why did Thomson conclude that atoms also contain a positive charge?* According to Thomson, where are the positive charges located in the atom?