Answer:
a) 
b) 
c) 
Explanation:
From the question we are told that:
Beaker Mass 
Liquid Mass 
Balance D:
Mass 
Balance E:
Mass 
Volume 
a)
Generally the equation for Liquid's density is mathematically given by



b)
Generally the equation for D's Reading at A pulled is mathematically given by
m_d = mass of block - mass of liquid displaced



c)
Generally the equation for E's Reading at A pulled is mathematically given by



Answer:
The solution code is written in Python 3.
- carYear = 1995
- if(carYear < 1967):
- print("Probably has few safety features.\n")
- if(carYear > 1970):
- print("Probably has head rests. \n")
- if(carYear > 1991):
- print("Probably has electronic stability control.\n")
- if(carYear > 2002):
- print("Probably has airbags. \n")
Explanation:
Firstly, create a variable, <em>carYear</em> to hold the value of year of the car make. (Line 1)
Next, create multiple if statements as required by the question (Line 3-13). The operator "<" denotes "smaller" and therefore <em>carYear < 1967</em> means any year before 1967. On another hand, the operator ">" denotes "bigger" and therefore <em>carYear > 1970 </em>means any year after 1970.
The print statement in each of the if statements is done using the Python built-in function <em>print()</em>. The "\n" is an escape sequence that create a new line at the end of each printed phrase.
Answer:
Yes,If we use river water which is entering at 20⁰ C in the condenser then it is possible to maintain the pressure of 10 KPa in condenser.
Explanation:
Yes,If we use river water which is entering at 20⁰ C in the condenser then it is possible to maintain the pressure of 10 KPa in condenser.
The saturation temperature of steam is 45.81⁰ C at the pressure of 10 KPa which is higher than 20⁰C of river water. So river water at 20⁰C can be used to maintain the condenser pressure to 10 KPa.