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:

Explanation:
Given data:
P_1 power = 20 dBm = 0.1 watt
coupling factor is 20dB
Directivity = 35 dB
We know that
coupling factor 
solving for final power




Directivity 


output Power 


Moisture content is measured in terms of pounds of water per pound of air (lb water/lb air) or grains of water per pound of air (gr. of water/lb air).
Hope this helps❤