Answer:
A document file format is a text or binary file format for storing documents on a storage media, especially for use by computers. There currently exist a multitude of incompatible document file formats.
Explanation:
 
        
                    
             
        
        
        
It kinda depends on what you mean by special characters
 
        
                    
             
        
        
        
Explanation:
Information technology is inescapable in modern day life, turn on the coffee pot and there are tiny microprocessor inside. Start your automobile and every aspect of operation is controlled by dozens of computer control modules. The current mobile phone amazing power and speed for the user. Technology is transforming every aspect of our life. Nowever is this more apparent than our place of employment. Developing of it makes our family to live happy because it helps the members of family to spend their most time with their family. It helps us to communicate the family member who live far from their family. It is also used in house hold work. It's saves our time to do more better and better
 
        
             
        
        
        
Answer:
Written in Python
import math
principal = 8000
rate = 0.025
for i in range(1, 11):
     amount = principal + principal * rate
     principal = amount
     print("Year "+str(i)+": "+str(round(amount,2)))
Explanation:
This line imports math library
import math
This line initializes principal amount to 8000
principal = 8000
This line initializes rate to 0.025
rate = 0.025
The following is an iteration from year 1 to 10
for i in range(1, 11):
     This calculates the amount at the end of the year
     amount = principal + principal * rate
     This calculates the amount at the beginning of the next year
     principal = amount
     This prints the calculated amount
     print("Year "+str(i)+": "+str(round(amount,2)))