Answer:
Explanation:
The pictures below shows the whole explanation for the problem
Houses the CYLINDERS, Water Jacket & Crankcase
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:
Percentage of solution=32. 96%
Explanation:
Given that initially tank have 50% solution.It means that amount of solution=0.5 x 2500 =1250 lts
Lets take the amount of solution at time t = A
So




Now by integration

Where C is the constant
Given that at t=0 ,A=1250
So 

When t=20 min

A=837.90
So percentage of solution after 20 min

Percentage of solution=32. 96%