convert 40db to standard gain
AL=10^40/20=100
calculate total voltage gain
=AL×RL/RL+Ri
=83.33
38.41 DB
calculate power
Pi=Vi^2/Ri Po=Vo^2/RL
power gain= Po/Pi
=13.90×10^6
Answer:
final pressure is 6847.41 kPa
Explanation:
given data:



as we can see all temperature are more than 100 degree, it mean this condition is refered to superheated stream
for ischoric process we know that



final pressure is 6847.41 kPa
Answer:
<em>Written in Python</em>
def SumN(n):
total = 0
for i in range(1,n+1):
total = total + i
print("Total: ",total)
def SumNCubes(n):
total = 0
for i in range(1,n+1):
total = total + i**3
print("Cube: ",total)
n = int(input("User Input: "))
if n > 0:
SumN(n)
SumNCubes(n)
Explanation:
The SumN function is defined here
def SumN(n):
This line initializes the total to 0
total = 0
The following iteration compute the required sum
<em> for i in range(1,n+1):
</em>
<em> total = total + i
</em>
This line outputs the calculated sum
print("Total: ",total)
The SumNCubes function is defined here
def SumNCubes(n):
This line initializes the total to 0
total = 0
The following iteration compute the required sum of cubes
<em> for i in range(1,n+1):
</em>
<em> total = total + i**3
</em>
This line outputs the calculated sum of cubes
print("Cube: ",total)
The main starts here; The first line prompts user for input
n = int(input("User Input: "))
The next line checks if input is greater than 0; If yes, the two defined functions are called
if n > 0:
SumN(n)
SumNCubes(n)