hat is the surface area of this right rectangular prism with dimensions of 6 inches by 4 inches by 12 inches? A.324 B.256 C.288 D.512

Answers

Answer 1

The surface area of the given right rectangular prism is 288 square inches.

The given dimensions of the right rectangular prism are:

Length = 6 inches

Width = 4 inches

Height = 12 inches

The surface area of a rectangular prism can be calculated using the formula:

Surface Area = 2lw + 2lh + 2wh

Substituting the values into the formula:

Surface Area = 2(6)(4) + 2(6)(12) + 2(4)(12)

Surface Area = 48 + 144 + 96

Surface Area = 288 square inches

Therefore, the surface area of the given right rectangular prism is 288 square inches.

Learn more about Surface Area here:

https://brainly.com/question/29101132

#SPJ1


Related Questions

if the coefficient of correlation is .7, the percentage of variation in the dependent variable explained by the variation in the independent variable is

Answers

The coefficient of determination is 0.49. This means that approximately 49% of the variation in the dependent variable can be explained by the variation in the independent variable.

What is coefficient of determination?

The coefficient of determination, also known as R-squared (R²), quantifies the extent to which the variation in the dependent variable can be accounted for or attributed to the independent variable(s) in a regression model.

On the other hand, the coefficient of correlation, represented as r, measures the strength and direction of the linear relationship between two variables. It ranges from -1 to 1, where a value of 1 indicates a perfect positive linear relationship, -1 indicates a perfect negative linear relationship, and 0 suggests no linear relationship.

In order to assess the percentage of variability in the dependent variable (y) that can be explained by the independent variable (x), we calculate the coefficient of determination (r²). This value indicates the proportion of the variance in the dependent variable that can be understood based on the variation in the independent variable.

To calculate [tex]r^2[/tex], we square the coefficient of correlation (r):

[tex]r^2 = (0.7)^2 = 0.49[/tex]

So, the coefficient of determination is 0.49. This means that approximately 49% of the variation in the dependent variable can be explained by the variation in the independent variable.

To learn more about determination visit:

https://brainly.com/question/17237825

#SPJ4

the slant side of a cone is 15 cm long and the radius of the base is 7 cm calculate the volume of the cone​

Answers

The value of volume of the cone​ is,

⇒ V = 53.9π cm³

We have to given that;

The slant side of a cone is,

⇒ 15 cm

And, the radius of the base is

⇒ 7 cm.

Since, We know that;

Volume of cone is,

⇒ V = 1/3 πr² (√l² - r²)

Here, r = 7 cm

l = 15 cm

Hence, We get;

⇒ V = 1/3 πr² (√l² - r²)

⇒ V = 1/3 π (7)² (√15² - 7²)

⇒ V = 1/3π × 49 (√176)

⇒ V = 1/3π × 49 × 13.3

⇒ V = 53.9π cm³

Thus, The volume of the cone​ is,

⇒ V = 53.9π cm³

Learn more about the multiplication visit:

https://brainly.com/question/10873737

#SPJ1

evaluate the integral. (use c for the constant of integration.) 4 tan(x) sec3(x) dx

Answers

Therefore, the integral evaluates to 2tan^2(x) + c.

Let u = tan(x), then du/dx = sec^2(x) dx

Using du/dx, we can write the integral as:

∫4 tan(x) sec^3(x) dx = ∫4u du = 2u^2 + c = 2tan^2(x) + c

To know more about integral,

https://brainly.com/question/31392182

#SPJ11

Determine the equation of the line that passes through the point (-6, -30) and is parallel to the line y+4x+5.

Answers

Answer:

y=4x-6

Step-by-step explanation:

y=4x+5

-30=-24-6

y=4x-6

5x² - 15x + 10 = 0
x = [?], [?]

Answers

Answer:

x = 1 and x= 2

Step-by-step explanation:

First of all, divide all by 5.

x² - 3x + 2 =0

Using factorisation method, we need two numbers that add up to -3, but the same two numbers multiply with one another to produce answer of 2.

Format is (x    ) (x     ) = 0

-1 and -2, when added, produce result of -3. (-1 + -2 = -1 -2 = -3)

When multiplied, they give result of +2 (-1 X -2 = +2)

(x – 1) (x – 2) = 0.  We have x – 1 = 0, x = 1. We also have x – 2 = 0, x = 2.

These are the solutions of the equation.

A ball with mass 1.24 kg is dropped from a height of 18.8 m. How fast is it going when it hits the ground?

Answers

Answer:

Prolly bout a hunnit miles per hour

Step-by-step explanation:

Use the information given in the figure to find the length R U.
If applicable, round your answer to the nearest whole number.

The lengths on the figure are not drawn accurately.

Answers

The required length RU is 16 units for the given triangle.

As we know that Pythagoras's theorem states that in a right-angled triangle, the square of one side is equal to the sum of the squares of the other two sides.

Using Pythagoras's theorem in ΔSUT,

ST² = SU² + UT²

37² = SU² + 35²

SU² = 37² - 35²

SU² = 1369 - 1225

SU² = 144

SU = 12 units

Now, using Pythagoras's theorem in ΔRSU,

SR² = SU² + RU²

20² = 12² + RU²

400 = 144 + RU²

RU² = 400 - 144

RU² = 256

RU = 16 units

Therefore, the required length RU is 16 units.

Learn more about Pythagoras's theorem here:

brainly.com/question/343682

#SPJ1

The following incomplete R code aims to generate a random number x in the following way. With probability 0.2, we draw it from the Poisson distribution with rate parameter equal to 20; with probability 0.8, we draw it from the Poisson distribution with rate paramter equal to 2. Fill in the two lines of missing code.
n<- sample(1:10, size=1)
x <- 0
if (n <= 2) {
#[fill in the code]
} else {
#[fill in the code]
}
print(x)

Answers

The complete R code to generate a random number x with probability 0.2 is;

n <- sample(1:10, size=1)x <- 0if (n <= 2) {x <- rpois(1, lambda = 20) # draw from Poisson with rate parameter 20} else {x <- rpois(1, lambda = 2) # draw from Poisson with rate parameter 2}print(x)

What is a Poisson distribution in R code?

R is a programming language for statistical computation and graphics that is backed by the R Core Team and the R Foundation for Statistical Computing.

In R programming, the Poisson distribution is used to describe the probability that a certain number of events will take place in a given amount of time or space if they occur at a known constant mean rate.

Learn more about R code at: https://brainly.com/question/30408850

#SPJ1

5. A basic stereo system costs $189.67. An upgraded
model costs $212.09. How much more does the
upgraded model cost?

Answers

The upgraded model costs $22.42 more than the basic model.

Given that a basic stereo system costs $189.67.

An upgraded model costs $212.09.

We have to find the how much more does the upgraded model cost

To find this we have to find the difference of costs between two models.

The upgraded model costs $212.09 and the basic model costs $189.67

So the difference in cost is:

Two hundred twelve minus one hundred eighty nine point six seven

$212.09 - $189.67

We get twenty two point four two

$22.42

Therefore, the upgraded model costs $22.42 more than the basic model.

To learn more on Equation:

https://brainly.com/question/10413253

#SPJ1

9. In a survey, 48% of people state that they enjoy indoor activities, 31% state that they own a car, and 15% state that they enjoy indoor activities and own a car. What conclusion you can write for the group of people surveyed?

Answers

The group of people surveyed evident that the tastes and routines of those polled exhibit a broad range.

We have to given that;

In a survey, 48% of people state that they enjoy indoor activities, 31% state that they own a car, and 15% state that they enjoy indoor activities and own a car.

Now, The survey's findings suggest that a wide range of persons were interviewed.

Only about a third of the group possesses a car, despite the fact that around half of them prefer indoor activities.

15% of the population, meanwhile, belongs to a subpopulation that takes pleasure in both indoor activities and owns a car.

Hence, Overall, it is evident that the tastes and routines of those polled exhibit a broad range.

Learn more about the percent visit:

https://brainly.com/question/24877689

#SPJ1

pls help
Prahar wants to bake homemade apple pies for the school bake sale. The recipe for the filling of a homemade apple pie that serves 6 consists of the following:


three fourths cup sugar
three fifths teaspoon cinnamon
one eighth teaspoon ground nutmeg
one fourth teaspoon salt

Prahar would like to serve 20 people. Choose one of the ingredients from the recipe and determine the amount he would need for a serving of this size. Set up the proportion and show all necessary work using fractions or decimals.

Answers

The Prahar would need 5/16 teaspoon of salt to serve 20 people.

To determine the amount of an ingredient Prahar would need to serve 20 people, we can use proportions. Let's take the ingredient salt, which calls for 1/4 teaspoon in the recipe.

First, we need to figure out how much salt is needed for one serving. Since the recipe serves 4 people, we can divide 1/4 teaspoon by 4 to get 1/16 teaspoon per serving.

Next, we can set up a proportion to find out how much salt is needed for 20 servings:

1/16 teaspoon : 1 serving = x : 20 servings

To solve for x, we can cross-multiply:

1/16 teaspoon x 20 servings = 1 serving

x = 1/16 teaspoon x 20 = 5/16 teaspoon

To learn more about : salt

https://brainly.com/question/30135979

#SPJ11

a researcher is interested in the effect of gender and environment on memorization. he gathers 15 men and 15 women. each man and each woman is given a memorization task to perform in a room with music and in a room with no music. how many total subjects (n) are there in the study?

Answers

The total number of subjects (n) in the study is 30. This is because the researcher gathered 15 men and 15 women, which gives a total of 30 participants in the study. Each participant was given a memorization task to perform in two different environments, one with music and one without music.

Therefore, each participant performed the task twice, resulting in a total of 60 data points (30 participants x 2 environments).

It is important to note that the researcher is interested in the effect of two independent variables, gender and environment, on the dependent variable of memorization. By including both men and women in the study, the researcher can examine if there are any gender differences in memorization abilities.

By having two different environments, the researcher can examine if there are any environmental factors that may affect memorization. Multiple independent variables and measures of the dependent variable can provide a more complete understanding of the phenomenon being studied.

To know more about Subject visit :

https://brainly.com/question/3541306

#SPJ11

Find the volume of the box. The box shows the length is 4 feet, the width is 5 feet, and the height is 3 feet. The volume of the box is blank cubic feet. The solution is

Answers

volume is LxWxH
so you’d do 4x5x3
so V=60

Jerry needs your help to find the
volume of the cue ball that has a
diameter of 4 inches. Round to the
nearest hundredth.

Answers

The volume of the ball (sphere) that Jerry needs to determine can be computed with a diameter of 4 inches, rounded to the nearest hundredth, as 33.52 inches³.

What is the volume?

The volume refers to the capacity of an object, cylinder, sphere, or box.

Diameter of the ball = 4 inches

Radius = d/2

= 2 inches

The volume can be determined using the radius, which is half of the diameter, as follows:

Volume = ⁴/₃πr³

Volume = ⁴/₃ x ²²/₇ x 2³

Volume = ⁴/₃ x ²²/₇ x 8

Volume = 33.52 inches³

Thus, we can conclude that Jerry's ball has a volume of 33.52 inches³.

Learn more about the volume at https://brainly.com/question/27710307.

#SPJ1

a beach ball is deflating at a constant rate of 10 cubic centimeters per second. when the volume of the ball is 256/3pie cubic centimeters, what is the rate of change of the surface area

Answers

The rate of change of the surface area of a beach ball is -20/pie cm^2 per second when the volume of the ball is 256/3pie cubic centimeters, assuming the ball retains its spherical shape as it deflates at a constant rate of 10 cubic centimeters per second.

The formula for the volume of a sphere is V = 4/3 * pie * r^3, and the formula for the surface area of a sphere is A = 4 * pie * r^2. If the volume of the beach ball is 256/3pie cubic centimeters, we can solve for the radius by setting the volume equation equal to this value and solving for r:

256/3pie = 4/3 * pie * r^3

r^3 = (256/3) / (4/3 * pie)

r^3 = 16/3pie

r = (16/3pie)^(1/3)

Since the beach ball is deflating at a constant rate of 10 cubic centimeters per second, the rate of change of the volume can be expressed as dV/dt = -10. Taking the derivative of the surface area formula with respect to time gives us:

dA/dt = 8 * pie * r * dr/dt

We can substitute in the values we calculated for r and dV/dt to find:

dA/dt = 8 * pie * (16/3pie)^(1/3) * (-10)

dA/dt = -20/pie cm^2 per second

Therefore, the rate of change of the surface area of the beach ball is -20/pie cm^2 per second when the volume of the ball is 256/3pie cubic centimeters.

Learn more about Cubic Centimeters here: brainly.com/question/9740005

#SPJ11

<
The current portion of long-term notes payable is
OA. reported if the note will be transferred to accounts payable
B. the amount to be paid at maturity when it is more than one year away from the due date
OC. the amount of principle to be paid for any long-term note payable due within one year or less
OD. the amount of interest and the amount of principle of any notes due within one year or less

Answers

The current portion of long-term notes payable is the amount of principle to be paid for any long-term note payable due within one year or less. The correct option is C.

The current portion of long-term notes payable is the amount of principal that is to be paid for any long-term note payable that is due within one year or less. This amount is reported as a current liability on the balance sheet of the company.

The current portion of long-term notes payable refers to the amount of principal that will be paid within the next 12 months or less.

It is a portion of the long-term debt that is due within a short period and is reported as a current liability in the company's balance sheet.

This means that the portion of the long-term notes payable that is not due within the next 12 months is classified as a long-term liability.

Thus, the correct option is C.

For more details regarding balance sheet, visit:

https://brainly.com/question/26323001

#SPJ1

How do drivers react to sudden large increases in the price of gasoline? To help answer the question, a statistician recorded the speed of cars as they passed a large service station. He recorded the speeds (mph) in the same location after the service station showed that the price of gasoline had risen by 15 cents. Can we conclude that the speeds differ?

Answers

Based on the information provided, we cannot conclusively determine how drivers react to sudden large increases in the price of gasoline. However, we can use the recorded speeds of cars passing the service station before and after the price increase to determine if there is a statistically significant difference in speeds.

A hypothesis test can be conducted to determine if there is a significant difference in means between the two groups. If the p-value is less than the significance level, we can conclude that the speeds differ and suggest that the price increase had an impact on driver behavior. However, if the p-value is greater than the significance level, we cannot conclude that there is a significant difference in speeds and suggest that other factors may have influenced driver behavior.


To determine how drivers react to sudden large increases in the price of gasoline, we can follow these steps:

1. Collect data: The statistician recorded the speeds (mph) of cars passing a large service station before and after the price of gasoline increased by 15 cents.

2. Analyze the data: Compare the recorded speeds before and after the price increase to see if there's a noticeable difference.

3. Conduct a hypothesis test: Perform a statistical test to determine if the observed differences in speeds are significant or due to chance. For example, you can use a paired t-test or another appropriate test based on the data collected.

4. Draw conclusions: If the test shows a significant difference in speeds, we can conclude that drivers' behavior changed in response to the price increase. Otherwise, we cannot confidently say that the speeds differ due to the price increase.

By following these steps, you can determine if drivers' speeds differ as a result of sudden large increases in the price of gasoline.

Learn more about hypothesis at: brainly.com/question/29576929

#SPJ11

What is the solution to this problem?

6csc(0)-7=5

Answers

The equation 6csc(0)-7=5 can be solved as follows:

Add 7 to both sides of the equation to get:

6csc(0) = 12

Divide both sides of the equation by 6 to get:

csc(0) = 2

Take the reciprocal of both sides of the equation to get:

sin(0) = 1/2

Therefore, the solution to the equation is 0 = 30 degrees (or pi/6 radians).

URGENT!!! Will give brainliest :)

The equation of the regression line for the data in the table
is y = 4.7x - 179, where x represents the height and y is the
predicted walking speed.

What is the meaning of 4.7 in the equation?

A. For every 1-minute increase in walking time, walking speed increases by 4.7 m/min.
B. For every 1 m/min increase in walking speed, height increases by 4.7 inches.
C.The predicted speed for a person with a height of 0 inches is 4.7 m/min.
D. For every 1-inch increase in height, walking speed increases by 4.7 m/min.

Answers

Answer:

D. For every 1-inch increase in height, walking speed increases by 4.7 m/min.

Find cos 0, where 0 is the angle shown.

Give an exact value, not a decimal approximation.

Answers

Step-by-step explanation:

For RIGHT triangles, cos = adjacent leg/hypotenuse

    cos Φ = 7 / hypotenuse

Use Pythagorean Theorem to find hypotenuse

 hyp^2 = 7^2 + 24^2

 hyp = 25

cos Φ = 7/25      or   0.28  

WILL GIVE BRAINLIST TO BEST ANSWER

Find the value of x that makes lines u and v parallel

Answers

Answer:

So if x = 5, then lines u and v are parallel.

Step-by-step explanation:

If the two angles are equal to each other, then lines u and v are parallel.


So set those 2 angles equal to each other, solve for x.

2 + 25x = 127

25x = 127-2

25x = 125

x = 5

So if x = 5, then lines u and v are parallel.

if 1,800 square centimeters of material is available to make a box with a square base and an open top, find the largest possible volume of the box.

Answers

Therefore, the largest possible volume of the box is approximately 6,821.05 cubic centimeters.

Let the side length of the square base be x. Then, the height of the box will also be x, since it has an open top. The surface area of the box will be:

Area of the base: x^2

Area of the sides: 4xh = 4x^2, since h = x

Total surface area: x^2 + 4x^2 = 5x^2

We know that the available material is 1,800 square centimeters, so:

5x^2 = 1800

Solving for x, we get:

x^2 = 360

x ≈ 18.97

The largest possible volume of the box will be when x = 18.97, which gives:

V = x^2h = 18.97^2 * 18.97 ≈ 6,821.05 cubic centimeters

To know more about volume,

https://brainly.com/question/24435041

#SPJ11

A rectangular brick wall is 5 m wide and 1 m tall. Use Pythagoras' theorem to work out the distance between diagonally opposite corners. Give your answer in metres (m) to 1 d.p. 1m 5m​

Answers

Answer:

[tex] \sqrt{ {5}^{2} + {1}^{2} } = \sqrt{25 + 1} = \sqrt{26} = 5.1[/tex]

The distance between diagonally opposite corners of this wall is about 5.1 meters.

Find the volume of the right cone below in terms of π.
Answer:
units
16
6
Submit Answer
SIZED

Answers

Answer:

192pi units^3

Also correct: 603.19

Step-by-step explanation:

Compute the distance from to the subspace of ℝ4 spanned by 1 and 2. Y= [4, - 6, 0 , 0 ] v1. [2 2 -2 -1] V2 [4 -1 1 4]

Answers

The distance from Y to the subspace spanned by V is approximately 4.05 units.

To compute the distance from a point to a subspace, we can use the formula:

d = ||Y - proj(V)Y||

where Y is the given point and V is a set of vectors spanning the subspace.

In this case, Y = [4, -6, 0, 0] and V = {[2, 2, -2, -1], [4, -1, 1, 4]}.

Step 1: Find the projection of Y onto the subspace spanned by V.

To find the projection, we can use the formula:

proj(V)Y = ((Y⋅V1)/(V1⋅V1)) * V1 + ((Y⋅V2)/(V2⋅V2)) * V2

where ⋅ denotes the dot product.

Calculating the dot products:

Y⋅V1 = [4, -6, 0, 0] ⋅ [2, 2, -2, -1] = 8 + (-12) + 0 + 0 = -4

V1⋅V1 = [2, 2, -2, -1] ⋅ [2, 2, -2, -1] = 4 + 4 + 4 + 1 = 13

Y⋅V2 = [4, -6, 0, 0] ⋅ [4, -1, 1, 4] = 16 + 6 + 0 + 0 = 22

V2⋅V2 = [4, -1, 1, 4] ⋅ [4, -1, 1, 4] = 16 + 1 + 1 + 16 = 34

Calculating the projection:

proj(V)Y = ((-4/13) * [2, 2, -2, -1]) + ((22/34) * [4, -1, 1, 4])

= [-8/13, -8/13, 8/13, 4/13] + [44/34, -11/34, 11/34, 44/34]

= [108/34, -108/34, 108/34, 156/34]

= [54/17, -54/17, 54/17, 78/17]

Step 2: Calculate the distance.

To calculate the distance, we use the formula:

d = ||Y - proj(V)Y|| = ||[4, -6, 0, 0] - [54/17, -54/17, 54/17, 78/17]||

Calculating the vector difference:

Y - proj(V)Y = [4, -6, 0, 0] - [54/17, -54/17, 54/17, 78/17]

= [68/17, -102/17, -54/17, -78/17]

Calculating the norm (magnitude):

||Y - proj(V)Y|| = √((68/17)^2 + (-102/17)^2 + (-54/17)^2 + (-78/17)^2)

= √(4624/289 + 10404/289 + 2916/289 + 6084/289)

= √(23428/289)

≈ 4.05

Know more about distance here:

https://brainly.com/question/31713805

#SPJ11

how much does 5000 shekels of bronze weigh

Answers

Answer:1250

Step-by-step explanation:

researchers plan to take a random sample of 600 adults from a population of over one million in order to compute a confidence interval for a proportion. if the researchers wanted to decrease the width of the confidence interval, they could

Answers

To decrease the width of a confidence interval for a proportion when taking a random sample of 600 adults from a population of over one million, researchers can either increase the sample size or decrease the desired level of confidence.

These actions reduce the margin of error, resulting in a narrower confidence interval.

When constructing a confidence interval for a proportion, the width of the interval is determined by the sample size, the level of confidence, and the estimated proportion. To decrease the width of the confidence interval, researchers can focus on adjusting the sample size or the level of confidence.

Firstly, increasing the sample size will lead to a narrower confidence interval. A larger sample size provides more data points, which improves the precision of the estimated proportion. As the sample size increases, the margin of error decreases, resulting in a narrower interval. However, it is important to note that there are practical limitations to the sample size, such as time, cost, and feasibility.

A higher level of confidence, such as 95% or 99%, results in a wider interval because it requires a higher level of certainty. By decreasing the level of confidence, such as using a 90% confidence level instead of 95%, the margin of error decreases, resulting in a narrower confidence interval.

Learn more about Confidence Interval here: brainly.com/question/13067956

#SPJ11

what is the predominant form of methionine (pka = 2.28 and 9.21) at ph 12?

Answers

At pH 12, the predominant form of methionine (pKa = 2.28 and 9.21) would be the deprotonated form, which is represented as -CH2-S-CH2-CH(NH3+)COO-.

At this high pH, both the carboxylic acid (-COOH) and the amino group (-NH3+) on the side chain of methionine will be deprotonated, resulting in a negatively charged side chain. This form of methionine has a net charge of -1. At this pH, the amino acid will exist predominantly in its anionic form since the pH is higher than both of its pKa values. Methionine's isoelectric point (pI) is 5.74, which is the pH at which its net charge is zero.

To learn more about methionine : brainly.com/question/2329477

#SPJ11

The domain (input value) of the cosine function is what

Answers

Step-by-step explanation:

( - ∞, + ∞ )      x  can have any value....there are no x values where x is undefined .

SHOW WORK PLS

Consider the expression 30x^7 y^4-10x^5 y+75x^4 y^3
Factor the expression

SHOW WORK PLS

Answers

Answer:

5x^4y(6x^3y^3 - 2x + 15y^x)

Step-by-step explanation:

the factor the expression 30x^7 y^4 - 10x^5 y +75x^4 y^3 we can first factor out the greatest common factor, which is 5x^4y:

30x^7 y^4 - 10x^5 y +75x^4 y^3

= 5x^4y(6x^3y^3 - 2x + 15y^2)

the expression 6x^3y^3 - 2x + 15y^2 cannot be factored further, so the final factored form is:

Other Questions
the company has hired a security guard but wants to find a way so that only one person at a time can enter in the data center. as people enter, they will have to show the security guard identification that authorizes them to enter the data center. what is your company's new security called? Solve for j.-41j+ 14j-28j - 10 = 45 PLEASE HELP!!!! WILL MARK BRAINLYIST!!!! What do you know about the trigonometric ratios for similar triangles? in what part of sub-saharan africa are the highest rates of hiv/aids found? how did the transition to an american republic improve or diminish the position of native americans, slaves or black americans, and women? 10. when the price level rises, the ad curve a. shifts to the right b. does not shift c. slopes upward d. shifts to the left Which statements describe the plague that hit Athens Out of 144 passengers travelling in a double- decker bus, 5/12of the passengers are sitting on the lower deck and the rest of the passengers are on the upper deck. If 14of the passengers are standing on the upper deck, then how many passengers are sitting there? .What kind of certificate is typically used by an individual to secure e-mail transmissions?a. Server digitalb. Personal digitalc. Public digitald. Private digital Find the smallest angle of ASTU. Assume that b is apositive number. Find the volume of the cylinder. Find the volume of a cylinder with the same radius and double the height. . . . Question content area top rightPart 16 in. 5 in. (This figure is not to scale. )Question content area bottomPart 1The volume of the cylinder is enter your response here in. 3. (Type an exact answer in terms of . ) egyptian pharaohs were believed to be descendants of the most powerful god, re, the ____. which of the following is not an nsaid? a. ibuprofen b. aspirin c. celecoxib d. acetaminophen it is difficult to see the roadway when driving on a rainy night mainly because Acknowledging the contributions of others' efforts is an example of what? Select one.Question 5 options:a. Author's' intentb. Logosc. Plagiarism d. Academic integrity i am a number between 17 and 25 i am a multiple of 3..... 6 is not a factor of mine Under what conditions is a multiple-baseline design more appropriate than a reversal design?a.When the dependent variable is self-injurious or highly dangerous.b.When the IV may have irreversible effects on the DV.c. Neither A nor B.d. Both A and B. Previous research shows that 60 percent of adults who drink non-diet cola prefer Coca-Cola to Pepsi. Recently, an independent research firm questioned a random sample of 25 adult non-diet cola drinkers. That chance that 20 or more of these people will prefer Coca-Cola is: HELP ASAP Which points are on the graph of the function rule (x) = 10 4x?a. (18, 2), (10, 0), (2, 2)b. ( 18, 2), ( 10, 0), ( 2, 2)c.(2, 18), (0, 10), (2, 2)d. (2, 18), (0, 10), ( 2, 2) Rating a potential source of frustration on a scale of 1 to 10 is an example of:a. perspective takingb. residual stressc. forecastingd. rampant diffusion