Answer:
(absolute).
Explanation:
Given that
Pressure ratio r
r=8

-----1
P₁(gauge) = 5.5 psig
We know that
Absolute pressure = Atmospheric pressure + Gauge pressure
Given that
Atmospheric pressure = 14.5 lbf/in²
P₁(abs) = 14.5 + 5.5 psia
P₁(abs) =20 psia
Now by putting the values in the above equation 1
Therefore the exit gas pressure will be 160 psia (absolute).
Answer:
1500Ω
Explanation:
Given data
voltage = 15 V
total Resistance = 4000Ω
potential drop V = 9.375 V
To find out
R2
Solution
we know R1 +R2 = 4000Ω
So we use here Ohm's law to find out current I
current = voltage / total resistance
I = 15 / 4000 = 3.75 ×
A
Now we apply Kirchhoffs Voltage Law for find out R2
R2 = ( 15 - V ) / current
R2 = ( 15 - 9.375 ) / 3.75 ×
R2 = 1500Ω
Answer:
(a) 0.243 m3/day
(b) 96 mg/l
(c) 0.426 m3/min
Explanation:
The sludge has an average solids concentration of 4 percent and considering TSS concentration in the influent of 240 mg/L then solids in sludge will be 0.04*240= 9.6 mg/L
Considering the average flow of 0.3 m3/s then mass of sludge per day will be given by 0.3*1000*9.6*60*60*24/1000000=248.832 kg/day
To get volume, considering specific gravity given as 1.025 and taking density of water as 1000 kg/m3 then density of sludge is 1025 kg/m3
Volume is mass/density hence 248.832/1025=0.2427629268292 m3/day
Approximately, the volume of sludge is 0.243 m3/day.
(b)
Efficiency of 60 percent is equivalent to 0.6
Efficiency=(influent concentration- flow rate)/influent concentration
0.6=(240-flow rate)/240
Flow rate= 96 mg/l
(c)
Cycle time= 0.243/0.57=0.4263157894736 m3/min
Rounded off, cycle time is 0.426 m3/day
Answer:
import java.util.*;
public class BarChart
{
public static void main(String args[])
{
int arr[]=new int[5];
Scanner sc=new Scanner(System.in);
for(int i=0;i<5;i++)
{
while(true){
System.out.println("Enter today's sale for store "+(i+1)+" (negative value not allowed)");
arr[i]=sc.nextInt();
if(arr[i]>0)
break;
}
}
System.out.println("SALES BAR CHART");
for(int i=0;i<5;i++)
{
System.out.println("Store "+(i+1)+": ");
for(int j=0;j<arr[i];j=j+100)
{
System.out.print("*");
}
System.out.println("");
}
}
}
Answer:
Your mobile phone has more computing power than the computers used for the Apollo 11 moon landing.
Mobile phones have to “work harder” to get a signal if you are in a moving vehicle.
The first mobile phone was made in 1973.
The first mobile phones that went on sale in 1983 cost nearly $4,000 each.
In 2012 Apple sold 340,000 phones per day.
4 out of 10 Brits admit to snooping on their partners phone.
Out of the 53% of snoopers that found incriminating evidence on their partner’s phone, 5% went on to terminate their relationship.
Waterproof mobile phones came to market because Japanese youngsters like to use them in the shower.
Apparently mobile phones have 18 times more bacteria on them than toilet handles!
Phubbing describes the act of snubbing someone by using your mobile phone in their company.
In 2015 more people died from taking selfies than shark attacks.
Teenagers that use a phone more than 2 hours a day increase their risk of depression and anxiety.
Nomobophobia is severe anxiety caused by the thought or act of losing your phone or running out of battery.
Explanation: