The absolute pressure at the bottom of a pool is 3.2 atm. What is the gage pressure at the same spot? Pick the correct answer
a. 4.2 atm
b. 4.2 bar
c. 220kPa
d. 3.2 atm
e. 2.2 atm

Answers

Answer 1

The gage pressure is the pressure measured relative to atmospheric pressure. To calculate the gage pressure, we need to subtract the atmospheric pressure from the absolute pressure.

Given that the absolute pressure at the bottom of the pool is 3.2 atm, we need to determine the atmospheric pressure. Standard atmospheric pressure is approximately 1 atm.

Gage pressure = Absolute pressure - Atmospheric pressure

Gage pressure = 3.2 atm - 1 atm

Gage pressure = 2.2 atm

Therefore, the correct answer is e. 2.2 atm.

To know more about gage pressure visit:

https://brainly.com/question/13390708

#SPJ11


Related Questions

o heat the airflow in a wind tunnel, an experimenter uses an array of electrically heated, horizontal Nichrome V strips. The strips are perpendicular to the flow. They are 20 cm long, very thin, 2.54 cm wide (in the flow direction), with the flat sides parallel to the flow. They are spaced vertically, each 1 cm above the next. Air at 1 atm and 20° C passes over them at 10 m/s a. How much power must each strip deliver to raise the mean

Answers

Each strip needs to deliver approximately 1.6 Watts of power to heat the airflow in the wind tunnel.

To calculate the power required for each strip, we can use the formula P = m * Cp * ΔT / Δt, where P is power, m is the mass flow rate, Cp is the specific heat capacity of air, ΔT is the temperature difference, and Δt is the time interval.

First, we need to find the mass flow rate. The density of air at 1 atm and 20°C is approximately 1.2 kg/m³. The velocity of the air is 10 m/s. Since the strips are 20 cm long, 2.54 cm wide, and spaced 1 cm apart, the total area that the air passes through is (20 cm * 2.54 cm) * 1 cm = 50.8 cm² = 0.00508 m². Therefore, the mass flow rate can be calculated as m = ρ * A * v = 1.2 kg/m³ * 0.00508 m² * 10 m/s = 0.06096 kg/s.

Next, we need to determine the temperature difference. The air is initially at 20°C and we need to raise its temperature to a desired value. However, the desired temperature is not mentioned in the question. Therefore, we cannot calculate the exact power required. We can only provide a general formula for power calculation.

Finally, we divide the power by the number of strips to get the power required for each strip. Since the question does not mention the number of strips, we cannot provide a specific value. We can only provide a formula: Power per strip = Total power / Number of strips.

Learn more about wind tunnel

brainly.com/question/15210384

#SPJ11

In order to implement the insert() function for a heap implemented using a vector A containing n values do the following: A: Place new element in A[n], then sift-down(A[n])
B: Place new element in A[0], then sift-down(A[0])
C: Place new element in A[n], then sift-up(A[n])
D: Place new element in A[0], then sift-up(A[0])
Group of answer choices
A
B
C
D

Answers

The correct answer to the given question is option C which states that in order to implement the insert() function for a heap implemented using a vector A containing n values, place a new element in A[n], then sift-up(A[n]).

How to implement the insert() function for a heap using vector A?We can implement the insert() function for a heap using vector A in two ways, i.e., either we can use the sift-up() function or sift-down() function. Let's have a look at both of these ways one by one.Sift-up() function for insert() function in a heapSift-up() is also known as up-heap or bubble-up, which means that we need to place the new element at the end of the array, i.e., at A[n] and then compare this new element with its parent node.A) If the new element is greater than the parent node, we will swap them.B) If the new element is smaller than the parent node, we will leave it as it is. And then we repeat this process until the parent node is greater than or equal to the new element.

To know more about vector visit:

https://brainly.com/question/24256726

#SPJ11

Step 1: Build the Board 1. Build an empty 8 x 8 board (call the Game Board array GB ) filled with zeros. (You must use the zeros command for this). 2. For your board we will assume that a value of 0 in that space means no boat there and a 1 means a boat is hidden there. 3. Use a FOR loop to control placing your Rowboats on the board. THINK ABOUT IT before you start writing code. It may take more than 6 attempts to place your 6 Rowboats because some spaces may be randomly picked more than once. So, you need a FOR loop with a very large number of iterations such as 10000 to ensure that you have a good chance to find 6 empty spaces for the Rowboats. 4. To place each Rowboat on the board: Each row number, m, and each column number, n, is a separate random number. You are to use the random number generator randi to randomly pick a space on the board like this: m = randi(8) and n = randi(8) o Check if the space (m,n) is empty using a logical test like: GB(m,n)==0. You also need to test if you still need to place more Rowboats on the board. o If both tests are true, then change the value of that space to 1 to show that you have placed a Rowboat there. That is, GB(m,n) = 1. You may also need to keep track of how many Rowboats you have put on the board. 5. After you have placed the 6 Rowboats on your board, use the instructions below to create an image of the board showing where the 6 Rowboats are positioned. • To show the board as an image, use these three commands: imagesc(GB) % GB is the name of your array axis square' % This makes your image a square shape and corrects for screen resolution title('My Row Boat Placement") % The title I want you to use for this problem. Put your name on the label for the x-axis. (Use the xlabel command as with plots.) o DO NOT put a label on the y-axis. Add another new command called "grid on" to draw thin lines showing your Row Boat placement. Add the following 2 lines of code to add tick marks and make your board image a bit prettier: xticks (1:1:8) yticks (1:1:8) You should see 6 Rowboats on your board. Next week we begin to talk more about images, but we wanted to introduce how to make an image, like the board, in preparation for that.

Answers

To build the board, the following steps are to be followed:Build an empty 8 x 8 board filled with zeros using zeros command. Consider 0 to represent no boat while 1 to represent the presence of a boat.

To place the rowboats, use a for loop to control and perform iterations for randomly placing 6 rowboats on the board. Using the random number generator randi to randomly pick a space on the board. To place each Rowboat on the board, you have to check whether the chosen space is empty or not using a logical test like GB(m,n) == 0. After checking the chosen space, if it's empty and needs to place more rowboats, then change the value of that space to 1, i.e., GB(m,n) = 1. Keep track of how many rowboats are placed on the board. Create an image of the board using the instructions below:Use imagesc(GB) to display the image of the board. The GB is the name of the array. Use the command 'axis square' to correct the shape of the image. Use the command 'title('My Row Boat Placement")' to add the title to the image. Put your name on the label for the x-axis. Use the xlabel command as with plots. Avoid putting a label on the y-axis. Use the command "grid on" to draw thin lines showing your Row Boat placement. Use xticks (1:1:8) and yticks (1:1:8) commands to add tick marks and make your board image a bit prettier.The   for building the board and placing rowboats is given below:```matlabGB=zeros(8,8); % build the empty boardcount=0;for i=1:10000 % use a very large number of iterationsm=randi(8); % randomly pick row numbern=randi(8); % randomly pick column numberif GB(m,n)==0 % check if space is emptycount=count+1; % update the countGB(m,n)=1; % place the rowboatif count==6 % check if all rowboats are placedbreak;endendendimagesc(GB)axis squaretitle('My Row Boat Placement')xlabel('Name')grid onxticks (1:1:8)yticks (1:1:8)```

To know more about code snippet visit:

https://brainly.com/question/30471072

#SPJ11

Other Questions
Which of the following is the MOST accurate guide to palpating a pulse?A. Avoid compressing the artery against a bone or solid structure.B. Place the tips of your index and long fingers over the pulse point.C. Use your thumb to increase the surface area that you are palpating.D. Apply firm pressure to the artery with your ring and little fingers. Hassan's income increases and, as a result, he buys more fish. Is fish an inferior or a normal good? Why? What happens to Hassan's demand curve for fish? Explain. Over the past 30 years, technological advances have reduced the cost of computer chips. How do you think this has affected the market for computers? And the market for typewriters? Explain. Our Sun, a type G star, has a surface temperature of 5800 K. We know, therefore, that it is cooler than a type O star and hotter than a type M star Othersportta coos tracking id: ST-630-45-4466-38345. In accordance with Expert TA's Terms of Service copying this information t 50% Part (a) How many times hotter than our Sun is the hottest type O star, which has a surface temperature of about 40,000 K? Number of times hotter sin() cos() tan() asin() acos() B12 SOAL atan() acotan() sinh() cotanh() tanh) Degrees O Radians cotan() cosh() (1) 7 4 1 Hint 8 9 5 6 2 3 + 0 VO CONCE . CLEAK Submit I give up! Hints: 0% deduction per hint. Hints remaining: 1 Feedback: 1% deduction per feedback. 50% Part (b) How many times hotter is our Sun than the coolest type M star, which has a surface temperature of 2400 K? Exercise 2. Suppose the only three risky assets in the market have the following expected returns and standard deviations: Asset A Asset B Asset C Expected returns 12.5% 15.0% 25.0% Standard deviation You own a stock that had returns of 13.82 percent, -16.94 percent, 23.16 percent, and 21.24 percent over the past four years. What was the arithmetic average return for this stock? 9.66% ,10.32%, 11.18% ,9.00% The monopolist's goal is to maximize its profits. As a result of this behavior, the economic consequence is price is greater than marginal cost. result in a transfer of consumer surplus to the firm. producing output where MR = MC and charging whatever the market demand curve will bear. All answers are correct Firm commitment versus best efferts. Astro Investment Bank offers Lunar Vacations the following options on its initial public sale of equity: (a) a best efforts arrangement whereby Astro will keep 3.1% of the retail sales or (b) a firm commitment arrangement of $10,200,000. Lunar plans on offering shares at $11.17 per share to the public. What is the break-even point in number of shares for Lunar Vacations? What are the proceeds to Lunar Vacations and Astro Investment Bank at the break-even point? HURRY THIS IS AN EMERGENCY. The greenhouse effect is most similar to which of the following examples?sunlight passing through a cars window, with some heat remaining inside, and heating up the interiorrolling down a car window to release the heat from the interior of the carblowing cold air into a warm jar to lower the temperature insideturning on the AC in a home to cool down the overall temperature hitler forces the anschluss (union) of austria and germany. true or false the oratorio was a replacement for what secular genre during the holy season? The management of company has presented their fixed assets in the current assets. As an auditor you have to test the presentation and disclosure of the fixed assets. Determine the most applicable audit objective for the test. Select one: O A. Classification O B. Cut-off O C. Existence OD. Right and obligation Clear my choice Determine the main source of evidence to be used in the substantive test Select one: A. Journal listing B. Payment Vouchers Fixed Asset Register Fixed Asset Ledger O C. O D. Which test is predominantly used in auditing fixed assets? Select one: O A. Substantive test O B. Risk assessment O C. Test of control O D. Scanning Auditors establish the validity of Fixed Assets Register by the following actions except for ......... Select one: O A. Test check the additions and disposal B. Perform analytical procedures O C. Check the casting in the PPE register O D. Agree the total cost of PPE in the general ledger with that of the PPE register Auditors select a sample of PPE from physical inspection and trace them to the Fixed Assets Register. Determine the audit objective for the procedure, which is performed by the auditors. Select one: O A. Right an obligation O B. Existence O C. Valuation D. Completeness Choose a FALSE statement regarding the t-distribution. O The t distribution is based on the assumption that the population of interest is normal nearly normal. O The t distribution has a greater spread than does the z distribution. As a result, the critical values of t for a given level of significance are larger in magnitude than the corresponding z critical values. O There is not one t distribution, but rather a "family" of t distributions. All t distributions have a mean of zero and a standard deviation of 1.O The higher the degree of confidence, the larger the sample required to give a certain precision. A spring has a natural length of 16 cm. Suppose a 21 N force is required to keep it stretched to a length of 20 cm. (a) What is the exact value of the spring constant (in N/m)? k= N/m (b) How much work w lin 1) is required to stretch it from 16 cm to 18 cm? (Round your answer to two decimal places.) tabulate 5 difference between local and western instrument in tabular form Shippers and 3PL providers strive towards reducing costs, securing more profits, which may not adhere with various environmental concerns. O True O False In the push system production orders begin upo draw the organic product(s) of the following reaction. lithium diisopropylamide please helpGiven a normal distribution with =4 and a -2, what is the probability that Question: Between what two X values (symmetrically distributed around the mean) are 95 % of the values? Instructions Pleas rogers and maslow are the key proponents of which personality theory? T/F (Qualitative) A stock with a higher market capitalization will have a higher beta, and vice versa. ANSWER Type your answer here.... BY 5 5 Pts Daily 120 patients come to a walk-in clinic to visit the doctors or get tested. The clinic operates 8 hours a day, and is closed on both Saturdays and Sundays. On average, there are 5 patients in the clinic at any point in time. 3-1. What is the weekly rate of patients visit at this clinic? What is the monthly rate, considering that the clinic works 22 days a month (write down the unit for your calculated value)?