Answer:
Water vapor
Explanation:
When water is in a vapor it tends to rise to a higher point. Because of this it would be able to reach the top of a building.
Answer:
1090 Steel >1040 Steel > Pure aluminium >Diamond.
Explanation:
Toughness:
Toughness can be define as the are of load -deflection diagram up to fracture point.
Modulus of toughness can be defines as the area of stress-strain diagram up to fracture point.Modulus of toughness is the property of material.
So the decreasing order of toughness can be given as follows
1090 Steel >1040 Steel > Pure aluminium >Diamond.
Answer:
The Python Code for Fibonacci Sequence is :
# Function for nth Fibonacci number
def Fibonacci(n):
if n<0:
print("Incorrect input")
# First Fibonacci number is 0
elif n==0:
return 0
# Second Fibonacci number is 1
elif n==1:
return 1
else:
return Fibonacci(n-1)+Fibonacci(n-2)
# Driver Program
print(Fibonacci(9))
Explanation:
The Fibonacci numbers are the numbers in the following integer sequence.
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ……..
In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation
Fn = Fn-1 + Fn-2
with seed values
F0 = 0 and F1 = 1.
Given Information:
Initial temperature of aluminum block = 26.5°C
Heat flux = 4000 w/m²
Time = 2112 seconds
Time = 30 minutes = 30*60 = 1800 seconds
Required Information:
Rise in surface temperature = ?
Answer:
Rise in surface temperature = 8.6 °C after 2112 seconds
Rise in surface temperature = 8 °C after 30 minutes
Explanation:
The surface temperature of the aluminum block is given by

Where q is the heat flux supplied to aluminum block, k is the conductivity of pure aluminum and α is the diffusivity of pure aluminum.
After t = 2112 sec:

The rise in the surface temperature is
Rise = 35.1 - 26.5 = 8.6 °C
Therefore, the surface temperature of the block will rise by 8.6 °C after 2112 seconds.
After t = 30 mins:

The rise in the surface temperature is
Rise = 34.5 - 26.5 = 8 °C
Therefore, the surface temperature of the block will rise by 8 °C after 30 minutes.
Answer:
Step On: Your foot forces the clutch pedal down and then causes it to take up the slack. This, in turn, causes the clutch friction disk to slip, creating heat and ultimately wearing your clutch out.
Step Off: When the clutch pedal is released, the springs of the pressure plate push the slave cylinder's pushrod back, which forces the hydraulic fluid back into the master cylinder.