Answer:
a)
, b)
, c) 
Explanation:
a) The tank can be modelled by the Principle of Mass Conservation:

The mass flow rate exiting the tank is:



b) An expression for the specific enthalpy at outlet is derived from the First Law of Thermodynamics:


Properties of water are obtained from tables:



The specific enthalpy at outlet is:


c) After a quick interpolation from data availables on water tables, the final temperature is:

Answer:
to filter out any impurities such as metal shavings in the oil
Answer:
Advantages of data analysis
Ability to make faster and more informed business decisions, backed by facts. Helps companies identify performance issues that require action. ... can be seen visually, allowing for faster and better decisions.
Answer:
The correct option is;
(a) High power density
Explanation:
The power density of a material is the amount of power per unit volume of the material. Power density, in the context of transformers, fuel cells, batteries, motors, and power supply units, is measured with respect to the volume, and the units is given as W/m³
A system such as a capacitor with an high power density has the capacity to put out large energy amount from a small volume. A capacitor with a high power density, can produce the same power output as a car battery and is said to have a high power density.
Below is the program to separate odd and even numbers
<u>Explanation</u>:
<u>L1:</u>
mov ah,00
mov al,[BX]
mov dl,al
div dh
cmp ah,00
je EVEN1
mov [DI],dl
add OddAdd,dl
INC DI
INC BX
Loop L1
jmp CAL
<u>EVEN1:</u>
mov [SI],dl
add Even Add,dl
INC SI
INC BX
Loop L1
<u>CAL: </u>
mov ax,0000
mov bx,0000
mov al,OddAdd
mov bl,EvenAdd
MOV ax,4C00h
int 21h
end
The above program separates odd and even numbers from the array using 8086 microprocessor. It has odd numbers in 2000h and even numbers in 3000h.