The reason why giant stars become planetary nebulas is Supergiant stars do not have enough mass to generate the gravity necessary to cause a planetary nebula.
<h3>Why do giant stars become planetary nebulae?</h3>
A planetary nebula is known to be formed or created by a dying star. A red giant is known to be unstable and thus emit pulses of gas that is said to form a sphere around the dying star and thus they are said to be ionized by the ultraviolet radiation that the star is known to releases.
Learn more about giant stars from
brainly.com/question/27111741
#SPJ1
Answer:
» Microsoft word ( word processing )
» Microsoft powerpoint ( presentation )
» Microsoft access ( database mamagement )
» Microsoft excel ( spread sheets )
Explanation:

Answer: OHMMETER & MEGOHMMETER:
Explanation: The ohmmeter measures circuit resistance; the megohmmeter measures the high resistance of insulation. A meter used to measure electric current. It is connected as part of a circuit.
Answer:
combining scientific knowledge, careful reasoning, and artistic invention in a flexible approach to problem-solving
Explanation:
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);
}
}