Answer:
375 KPa
Explanation:
From the question given above, the following data were obtained:
Initial pressure (P₁) = 125 KPa 
Initial temperature (T₁) = 300 K 
Final temperature (T₂) = 900 K
Final pressure (P₂) =?
The new (i.e final) pressure of the gas can be obtained as follow:
P₁/T₁ = P₂/T₂
125 / 300 = P₂ / 900
Cross multiply
300 × P₂ = 125 × 900
300 × P₂ = 112500
Divide both side by 300
P₂ = 112500 / 300
P₂ = 375 KPa
Thus, the new pressure of the gas is 375 KPa
 
        
             
        
        
        
Answer:
insert (array[] , value , currentsize , maxsize )
{
    if maxsize <=currentsize
   {
       return -1
   }
   index = currentsize-1
   while (i>=0 && array[index] > value)
   {
       array[index+1]=array[index]
       i=i-1
   }
  
   array[i+1]=value
   return 0
}
Explanation:
1: Check if array is already full, if it's full then no component may be inserted.
2: if array isn't full:
- Check parts of the array ranging from last position of range towards initial range and determine position of that initial range that is smaller than the worth to be inserted.  
- Right shift every component of the array once ranging from last position up to the position larger than the position at that smaller range was known.
-  assign new worth to the position that is next to the known position of initial smaller component. 
 
        
             
        
        
        
Good fats are also called unsaturated fats. They're found in foods like olives, nuts, avocado, and fish. Cut sources of saturated fat, such as fatty meat and dairy. Choose lean cuts of meat, and try eating more plant-based meals.