Answer:
Option B

Explanation:








Centripetal acceleration 
Tangential component=dr=2*1.75=3.5

Answer:
The claim is valid.
Explanation:
Let assume that heat pump is reversible. The coefficient of performance for the heat pump is:



The claim is valid as real heat pumps have lower coefficients of performance.
Answer:
a) 1253 kJ
b) 714 kJ
c) 946 C
Explanation:
The thermal efficiency is given by this equation
η = L/Q1
Where
η: thermal efficiency
L: useful work
Q1: heat taken from the heat source
Rearranging:
Q1 = L/η
Replacing
Q1 = 539 / 0.43 = 1253 kJ
The first law of thermodynamics states that:
Q = L + ΔU
For a machine working in cycles ΔU is zero between homologous parts of the cycle.
Also we must remember that we count heat entering the system as positiv and heat leaving as negative.
We split the heat on the part that enters and the part that leaves.
Q1 + Q2 = L + 0
Q2 = L - Q1
Q2 = 539 - 1253 = -714 kJ
TO calculate a temperature for the heat sink we must consider this cycle as a Carnot cycle. Then we can use the thermal efficiency equation for the Carnot cycle, this one uses temperatures:
η = 1 - T2/T1
T2/T1 = 1 - η
T2 = (1 - η) * T1
The temperatures must be given in absolute scale (1453 C = 1180 K)
T2 = (1 - 0.43) * 1180 = 673 K
673 K = 946 C
Answer:
28.6 kg
Explanation:
The final weight can be calculated from the mixing data and formulae which is given as follows:
cement content = 
Computing the parameters and checking the tables gives 28.6 kg.
Hi, you haven't provided the programing language in which you need the code, I'll just explain how to do it using Python, and you can apply a similar method for any programming language.
Answer:
1. def pyramid_volume(base_length, base_width, pyramid_height):
2. volume = base_length*base_width*pyramid_height/3
3. return(volume)
Explanation step by step:
- In the first line of code, we define the function pyramid_volume and it's input parameters
- In the second line, we perform operations with the input values to get the volume of the pyramid with a rectangular base, the formula is V = l*w*h/3
- In the last line of code, we return the volume
In the image below you can see the result of calling the function with input 4.5, 2.1, 3.0.