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
 
        
             
        
        
        
Location of the class depends on satiation
        
             
        
        
        
120 volt divided by 22 ampere
= 5.4545454545455 ohm (Ω)
P = V × I
= 120 volt × 22 ampere
= 2640 watt (W)
        
             
        
        
        
Full Question
1. Correct the following code and 
2. Convert the do while loop the following code to a while loop
declare integer product 
declare integer number
 product = 0 
do while product < 100 
display ""Type your number""
input number
 product = number * 10
 loop 
display product
 End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product 
declare integer number
 product = 0 
while product < 100 
display "Type your number"
input number
 product = number * 10
display product
 End While
2. The same code segment using a do-while statement
declare integer product 
declare integer number
 product = 0 
Do
display "Type your number"
input number
 product = number * 10
display product
while product < 100 
 
        
             
        
        
        
No hay videos? de cual video estás hablando?