Answer:
, 
Explanation:
Since there is no information related to volume flow to and from turbine, let is assume that volume flow at inlet equals to
. Turbine is a steady-flow system modelled by using Principle of Mass Conservation and First Law of Thermodynamics:
Principle of Mass Conservation

First Law of Thermodynamics

This 2 x 2 System can be reduced into one equation as follows:

The water goes to the turbine as Superheated steam and goes out as saturated vapor or a liquid-vapor mix. Specific volume and specific enthalpy at inflow are required to determine specific enthalpy at outflow and mass flow rate, respectively. Property tables are a practical form to get information:
Inflow (Superheated Steam)

The mass flow rate can be calculated by using this expression:


Afterwards, the specific enthalpy at outflow is determined by isolating it from energy balance:


The enthalpy rate at outflow is:


Answer:
The irrigation area is less in Telangana because of drought conditions, uncertain rains, inadequate irrigation facilities, and lack of groundwater. 84% of agricultural land depends on borewell irrigation but just about 10% of arable land irrigated by canals and 4% of land depends on tanks.
Answer:
biodegradable product
Explanation:
The biodegradable product will be the best product to buy on the market. This is due to the less harmful impact the product has on the environment. The plastics will degrade easily unlike the non-biodegradable products that are fossil fuel derivatives.
Answer:
# Python Program to Print
# all subsets of given size of a set
import itertools
def findsubsets(s, n):
return list(itertools.combinations(s, n))
# Driver Code
s = {1, 2, 3}
n = 2
print(findsubsets(s, n))
-----------------------------------------------
# Python Program to Print
# all subsets of given size of a set
import itertools
# def findsubsets(s, n):
def findsubsets(s, n):
return [set(i) for i in itertools.combinations(s, n)]
# Driver Code
s = {1, 2, 3, 4}
n = 3
print(findsubsets(s, n))
-------------------------------------------------------------
# Python Program to Print
# all subsets of given size of a set
import itertools
from itertools import combinations, chain
def findsubsets(s, n):
return list(map(set, itertools.combinations(s, n)))
# Driver Code
s = {1, 2, 3}
n = 2
print(findsubsets(s, n))
Explanation:
40.4m
Explanation:
Pressure at depth is given as
P = P, + pgh
Final pressure at depth h= 5 Po
5Po= Po + pgh
pgh = 4Po = 4 x 1.01 x 10^5
h = (4.04×10^5)/ (1000x10)
h=40.4m