Answer:
A supercapacitor, also called an ultracapacitor, is a high-capacity capacitor with a capacitance value much higher than other capacitors, but with lower voltage limits, that bridges the gap between electrolytic capacitors and rechargeable batteries.
Explanation:
Answer:
Communication is simply the act of transferring information from one place, person or group to another. Every communication involves (at least) one sender, a message and a recipient.
Explanation:
Answer:
manipulation, control , random assignment, and random selection
Explanation:
Answer:
as slated in your solution, if delay time is 2.30 mins, hence 9 vehicle will be on queue as the improved service commenced.
Explanation:
4 vehicle per min, in 2 mins of the delay time 8 vehicles while in 0.3 min average of 1 vehicle join the queue. making 9 vehicle maximum
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}