Answer:
Hi!
The correct answer is E.
Explanation:
void change(int ar[], int low, inthigh)  {  
  int temp;
  if(low< high)  {  <em>// here ask if the positions low and high of the array are the same.</em>
   temp= ar[low];  <em>// first, saves the element on ar[low] in temp.</em>
   ar[low]= ar[high];  <em>// second, the element on ar[high] in ar[low]. First switch.</em>
   ar[high]= temp;  <em>// third, saves the element on temp in ar[high]. Complete switch.</em>
   change(ar,low + 1, high - 1);  <em>// Recursive call, adding one position to low, and subtracting one position to high. </em><em>Important: </em><em>When low and high have the same value, the recursive call will finish.</em>
}
}
Result: Switch the lower half of elements in the array with the upper half.
 
        
                    
             
        
        
        
Answer:
Henry, an administrative assistant, is taking an advanced Word computer program class through an adult school program.  
Explanation:
 
        
             
        
        
        
It's d. Graphic designer because they design things on the computer with code
        
             
        
        
        
The beginning development of a
star is marked by a supernova explosion, with the gases present in the nebula
being forced to scatter. As the star shrinks, radiation of the surface
increases and create pressure on the outside shell to push it away and forming
a planetary nebula or white dwarf.
 
        
             
        
        
        
Answer:  If a customer orders more than four pizzas, the program should deduct 10% from the cost of the order. Modify the program appropriately, and then save, run, and test it.