Explanation:
how much the project will cost 
 
        
             
        
        
        
Before cellphones are able to be used to browse the internet, play games, record videos and take photos, its main purpose is similar to a telephone, albeit it is more portable. Early cellphones would not have games for you to play, not would it have emails for you to check, read, and reply to. Though ringtones might seem as an acceptable option, early cellphones would also have many selections or even any for you to choose. 
Thus, the best option would be (B) contact list, which is necessary for a cellphone to have since the owner would need the number to be able to make a call. 
 
        
             
        
        
        
Answer:
Following are the program in python language the name of the program is factors.py
num= int(input("Please enter a positive integer: "))#Read the number by user
print("The factors of ",num,"are:")
for k in range(2,num): #iterating over the loop
    if(num%k==0): #checking the condition
        print(k)#display the factor
Output:
Please enter a positive integer: 12
The factors of 12 are:
2
3
4
6       
Explanation:
Following are the description of the program
- Read the number by user in the "num" variable
 
- Iterating the for loop from k=2 to less then "num".
 
- In the for loop checking the factor of "num"  variable by using % operator.
 
- Finally display the factor by using print function
 
 
        
             
        
        
        
Answer:
the answer is quick access toolbar
 
        
                    
             
        
        
        
I would vote for D since you can adjust picture positioning and wrapping. A is BS, B and C are not true.