Answer:
The rate at which this vacuum cleaner supply energy to the room when running is 285.71 Watts.
Explanation:
power efficiency of electric motor = 70% = 0.70
The power output of the vacuum cleaner =
= 200 W
The power output of the vacuum cleaner = 



The rate at which this vacuum cleaner supply energy to the room when running is 285.71 Watts.
1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Explanation:
Given information denotes that .,one gram of Strontium-90 has an activity of 5.3 terabecquerels (TBq)
the activity of 1 micro gram is
1 gram = 1,000,000 micro gram has activities of 5.3 terabecquerels
therefore 1 micro gram has the activity of (5.3 ÷ 1,000,000 = 0.0000053 )
= 
Hence ., 1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Answer:
Explanation:
Obtain the following properties at 6MPa and 600°C from the table "Superheated water".

Obtain the following properties at 10kPa from the table "saturated water"

Calculate the enthalpy at exit of the turbine using the energy balance equation.

Since, the process is isentropic process 

Use the isentropic relations:

Calculate the enthalpy at isentropic state 2s.

a.)
Calculate the isentropic turbine efficiency.

b.)
Find the quality of the water at state 2
since
at 10KPa <
<
at 10KPa
Therefore, state 2 is in two-phase region.

Calculate the entropy at state 2.

Calculate the rate of entropy production.

since, Q = 0

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.