Answer:
d. all of the above
Explanation:
There are two components of acceleration for a particle moving in a circular path, radial and tangential acceleration.
The radial acceleration is given by;

Where;
V is the velocity of the particle
R is the radius of the circular path
This radial acceleration is always directed towards the center of the path, perpendicular to the tangential acceleration and negative.
Therefore, from the given options in the question, all the options are correct.
d. all of the above
This question is not complete, the complete question is;
The stagnation chamber of a wind tunnel is connected to a high-pressure air bottle farm which is outside the laboratory building. The two are connected by a long pipe of 4-in inside diameter. If the static pressure ratio between the bottle farm and the stagnation chamber is 10, and the bottle-farm static pressure is 100 atm, how long can the pipe be without choking? Assume adiabatic, subsonic, one-dimensional flow with a friction coefficient of 0.005
Answer:
the length of the pipe is 11583 in or 965.25 ft
Explanation:
Given the data in the question;
Static pressure ratio; p1/p2 = 10
friction coefficient f = 0.005
diameter of pipe, D =4 inch
first we obtain the value from FANN0 FLOW TABLE for pressure ratio of ( p1/p2 = 10 )so
4fL
/ D = 57.915
we substitute
(4×0.005×L
) / 4 = 57.915
0.005L
= 57.915
L
= 57.915 / 0.005
L
= 11583 in
Therefore, the length of the pipe is 11583 in or 965.25 ft
Answer:
- public class Main {
- public static void main(String[] args) {
- String testString = "abscacd";
-
- String evenStr = "";
- String oddStr = "";
-
- for(int i=testString.length() - 1; i >= 0; i--){
-
- if(i % 2 == 0){
- evenStr += testString.charAt(i);
- }
- else{
- oddStr += testString.charAt(i);
- }
- }
-
- System.out.println(evenStr + oddStr);
- }
- }
Explanation:
Firstly, let declare a variable testString to hold an input string "abscacd" (Line 1).
Next create another two String variable, evenStr and oddStr and initialize them with empty string (Line 5-6). These two variables will be used to hold the string at even index and odd index, respectively.
Next, we create a for loop that traverse the characters of the input string from the back by setting initial position index i to testString.length() - 1 (Line 8). Within the for-loop, create if and else block to check if the current index, i is divisible by 2, (i % 2 == 0), use the current i to get the character of the testString and join it with evenStr. Otherwise, join it with oddStr (Line 10 -14).
At last, we print the concatenated evenStr and oddStr (Line 18).
Answer:
Time period = 41654.08 s
Explanation:
Given data:
Internal volume is 210 m^3
Rate of air infiltration 
length of cracks 62 m
air density = 1.186 kg/m^3
Total rate of air infiltration 
total volume of air infiltration
Time period 