Answer:
As the asteroid falls closer to the Earth's surface its <u>Gravitational</u> <u>Potential</u> energy <em>decreases</em> and its <u>Kinetic</u> energy <em>increases</em>.
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);
}
}
Answer:
Both Technician A and technician B are correct.
Explanation: A transistor must have a P-N junction as that is where the positive and negative charges are connected.
A transistor also can be described as a semiconductor which acts as a switch and can be used to amplify currents. Transistors are very key and vital to electronic devices especially the mobile phones in recent times, it helps to ensure that electronic systems perform optimally.
The charges in the P-N junction is controlled by the availability of Positive and negative electrons.
Answer:
Explanation:
The question is asking when one boat is overtaking another boat, the overtaking boat should steer around the slower boat. The slower boat, the vessel being overtaken, is the stand-on vessel.