Answer:
a. 0.4544 N
b. 
Explanation:
For computing the normality and molarity of the acid solution first we need to do the following calculations
The balanced reaction



= 0.27264 g


= 0.006816 mol
Now
Moles of
needed is

= 0.003408 mol


= 0.333984 g
Now based on the above calculation
a. Normality of acid is


= 0.4544 N
b. And, the acid solution molarity is


= 0.00005112
=
We simply applied the above formulas
Answer:
F = 0.0022N
Explanation:
Given:
Surface area (A) = 4,000mm² = 0.004m²
Viscosity = µ = 0.55 N.s/m²
u = (5y-0.5y²) mm/s
Assume y = 4
Computation:
F/A = µ(du/dy)
F = µA(du/dy)
F = µA[(d/dy)(5y-0.5y²)]
F = (0.55)(0.004)[(5-1(4))]
F = 0.0022N
Answer:
hello some parts of your question is missing attached below is the missing part ( the required fig and table )
answer : The solar collector surface area = 7133 m^2
Explanation:
Given data :
Rate of energy input to the collectors from solar radiation = 0.3 kW/m^2
percentage of solar power absorbed by refrigerant = 60%
Determine the solar collector surface area
The solar collector surface area = 7133 m^2
attached below is a detailed solution of the problem
Answer:
<em>Python code is as follows:
</em>
********************************************************************************
#function to get number up to any number of decimal places
def toFixed(value, digits):
return "%.*f" % (digits, value)
print("Enter the price: ", end='', flush=True) #prompt for the input of price
price = float(input()) #taken input
totalCost = price + 0.05 * price #calculating cost
print("Total Cost after the sales tax of 5% is applied: " + toFixed(totalCost,2)) #print and output totalCost
************************************************************************************