Applications software (also called end-user programs) include such things as database programs, word processors, Web browsers and spreadsheets. A word processor could be classed as general purpose software as it would allow a user to write a novel, create a restaurant menu or even make a poster.
 
        
             
        
        
        
B. Spreadsheets is the answer
        
                    
             
        
        
        
Another one is iMovie which allows you to edit and cut things.
        
             
        
        
        
I belive its true but i am not a 100% sure
        
                    
             
        
        
        
Answer:
x = int(input("What grade are you in? "))
if(x == 9):
   print("Freshman")
   
elif(x == 10):
   print("Sophomore")
   
elif(x == 11):
   print("Junior")
   
elif(x == 12):
   print("Senior")
   
else:
   print("Not in High School")
Explanation: