Less, if it’s too big: hard to control and maneuverability for shooting wouldn’t be that good. a smaller wheelchair allows for faster movement and control, along with easier shooting and upper body movement
Answer:
d. low earth orbit (LEO)
Explanation:
This type of satellites form a constellation deployed as a series of “necklaces” in such a way that at any time, at least one satellite is visible by a receiver antenna, compensating the movement due to the earth rotation.
Opposite to that, a geostationary satellite is at an altitude that makes it like a fixed point over the Earth´s equator, rotating synchronously with the Earth, so it is always visible in a given area.
Answer:
a) V = 0.354
b) G = 25.34 GPA
Explanation:
Solution:
We first determine Modulus of Elasticity and Modulus of rigidity
Elongation of rod ΔL = 1.4 mm
Normal stress, δ = P/A
Where P = Force acting on the cross-section
A = Area of the cross-section
Using Area, A = π/4 · d²
= π/4 · (0.0020)² = 3.14 × 10⁻⁴m²
δ = 50/3.14 × 10⁻⁴ = 159.155 MPA
E(long) = Δl/l = 1.4/600 = 2.33 × 10⁻³mm/mm
Modulus of Elasticity Е = δ/ε
= 159.155 × 10⁶/2.33 × 10⁻³ = 68.306 GPA
Also final diameter d(f) = 19.9837 mm
Initial diameter d(i) = 20 mm
Poisson said that V = Е(elasticity)/Е(long)
= - <u>( 19.9837 - 20 /20)</u>
2.33 × 10⁻³
= 0.354,
∴ v = 0.354
Also G = Е/2. (1+V)
= 68.306 × 10⁹/ 2.(1+ 0.354)
= 25.34 GPA
⇒ G = 25.34 GPA
Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
Answer:
14.52 minutes
<u>OR</u>
14 minutes and 31 seconds
Explanation:
Let's first start by mentioning the specific heat of air at constant volume. We consider constant volume and NOT constant pressure because the volume of the room remains constant while pressure may vary.
Specific heat at constant volume at 27°C = 0.718 kJ/kg*K
Initial temperature of room (in kelvin) = 283.15 K
Final temperature (required) of room = 293.15 K
Mass of air in room= volume * density= (4 * 5 * 7) * (1.204 kg/m3) = 168.56kg
Heat required at constant volume: 0.718 * (change in temp) * (mass of air)
Heat required = 0.718 * (293.15 - 283.15) * (168.56) = 1,210.26 kJ
Time taken for temperature rise: heat required / (rate of heat change)
Where rate of heat change = 10000 - 5000 = 5000 kJ/hr
Time taken = 1210.26 / 5000 = 0.24205 hours
Converted to minutes = 0.24205 * 60 = 14.52 minutes