Answer:
The correct options are;
C. Alternating current and direct current
E. Electrolyte
Explanation:
Electricity is generated in either AC or DC depending on the source of the energy which aids the electricity generation;
The most common method through which electricity is generated and through which the principle of electric generation was discovered by Michael Faraday, is the rotation of a wire loop or coil between the North and South poles of a magnet to produce Alternating Current
Electricity is also generated in Direct Current by solar cells which convert sunlight into electric energy by photovoltaic effect.
20. Electrolysis is a chemical reaction that is brought about by the application or passing of a direct electric current through an electrolyte, which is an ion containing liquid.
Answer:
C
Explanation:
the total resistance is equal to the total potential difference divided by the Current
Explanation:
thermal expansion ∝L = (δL/δT)÷L ----(1)
δL = L∝L + δT ----(2)
we have δL = 12.5x10⁻⁶
length l = 200mm
δT = 115°c - 15°c = 100°c
putting these values into equation 1, we have
δL = 200*12.5X10⁻⁶x100
= 0.25 MM
L₂ = L + δ L
= 200 + 0.25
L₂ = 200.25mm
12.5X10⁻⁶ *115-15 * 20
= 0.025
20 +0.025
D₂ = 20.025
as this rod undergoes free expansion at 115°c, the stress on this rod would be = 0
Answer:
V1=5<u>ft3</u>
<u>V2=2ft3</u>
n=1.377
Explanation:
PART A:
the volume of each state is obtained by multiplying the mass by the specific volume in each state
V=volume
v=especific volume
m=mass
V=mv
state 1
V1=m.v1
V1=4lb*1.25ft3/lb=5<u>ft3</u>
state 2
V2=m.v2
V2=4lb*0.5ft3/lb= <u> 2ft3</u>
PART B:
since the PV ^ n is constant we can equal the equations of state 1 and state 2
P1V1^n=P2V2^n
P1/P2=(V2/V1)^n
ln(P1/P2)=n . ln (V2/V1)
n=ln(P1/P2)/ ln (V2/V1)
n=ln(15/53)/ ln (2/5)
n=1.377
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
==================================================================================