Answer: D)  Identifying GUI's for a particular requirement
Explanation:
  Traceability of requirements is helpful except identifying GUI's for a particular requirements as, traceability in project management describe the relationships between two or more element throughout in the development process and outline the relationship between the customer requirement by traceability matrix. And the requirement of traceability is so important because it creating a downstream flow of software and test cases in software requirement but not helpful in GUI identification. 
 
        
             
        
        
        
Answer:
    Open the presentation that you want to add a slide to.
    In the pane that contains the Outline and Slides tabs, click Slides, and then click where you want to add a slide.
Explanation:
 
        
             
        
        
        
Solution:
initial = float(eval(input('Enter the monthly saving amount: ')))
x = (1 + 0.00417)
month_one = initial * x
month_two = (initial + month_one) * x  
month_three = (initial + month_two) * x  
month_four = (initial + month_three) * x
month_five = (initial + month_four) * x  
month_six = (initial + month_five) * x  
print('The sixth month value is: '+str(month_six))  
Don't forget the saving amount, and initialize the balance with that amount. Inside the loop, work out and add the interest and then add the saving amount for the next month.
balance = 801
for month in range(6):
   balance = balance * (1.00417)
print(balance)
 
        
             
        
        
        
Answer:
 hi earlier u told me to answer ur question but i couldn't respond in the comments cos it said something went wrong
Explanation:
do i answer this question seriously or is this answer good?? srry im kinda dûmb T-T
 
        
             
        
        
        
Answer:
c.
Explanation:
People trust open-source software - if they can see how it works and understand it, they can help improve it and build applications using it. If these protocols were not publicly available - then nobody would have implemented services using them - so nobody would be adopting it.