Answer:
a. lighting and receptacle outlets
Explanation:
The two types of outlets that are found in an electrical system are
a. lighting and receptacle outlets
Outlets allow electrical equipment to connect to the electrical grid. The electrical grid provides alternating current to the outlet.
According to EonCoat, corrosion is the process of decay on a material caused by a chemical reaction with its environment. Corrosion of metal occurs when an exposed surface comes in contact with a gas or liquid, and the process is accelerated by exposure to warm temperature, acids, and salts.” (1)
Although the word ‘corrosion’ is used to describe the decay of metals, all natural and man-made materials are subject to decay, and the level of pollutants in the air can speed up this process.
Answer:
Given Data:
concentration of sewer Csewer = 1.2 g/L
converting into mg/L = Csewer = 1.2 g/L x 1000 mg/g = 1200 mg/L
flow rate of sewer Qsewer = 2000 L/min
concentration of sewer Cstream = 20 mg/L
flow rate of sewer Qstream = 2m3/s
converting Q into L/min = 2m3/s x 1000 x 60 = 120000 L/min
mass diagram is
Answer: The energy system related to your question is missing attached below is the energy system.
answer:
a) Work done = Net heat transfer
Q1 - Q2 + Q + W = 0
b) rate of work input ( W ) = 6.88 kW
Explanation:
Assuming CPair = 1.005 KJ/Kg/K
<u>Write the First law balance around the system and rate of work input to the system</u>
First law balance ( thermodynamics ) :
Work done = Net heat transfer
Q1 - Q2 + Q + W = 0 ---- ( 1 )
rate of work input into the system
W = Q2 - Q1 - Q -------- ( 2 )
where : Q2 = mCp T = 1.65 * 1.005 * 293 = 485.86 Kw
Q2 = mCp T = 1.65 * 1.005 * 308 = 510.74 Kw
Q = 18 Kw
Insert values into equation 2 above
W = 6.88 Kw
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================