A component of a change management program which includes final testing that the software functions properly is: C) Release management.
<h3>What is SDLC?</h3>
SDLC is an acronym for software development life cycle and it can be defined as a strategic methodology that defines the key steps, phases, or stages for the design, development and implementation of high quality software programs (applications).
In Computer science, there are seven (7) phases involved in the development of a software program and these include the following;
At the final testing stage, a component of a change management program which ensure that the software functions properly is known as release management.
Read more on software here: brainly.com/question/26324021
#SPJ1
Complete Question:
What component of a change management program includes final testing that the software functions properly?
A) Request management
B) Change management
C) Release management
D) Iteration management
Class B would be the correct answer.
Answer:
def isAnagram(s1, s2):
list1=s1
list2=s2
sortedlist1 = sorted(list1)
sortedlist2 = sorted(list2)
if sortedlist1 == sortedlist2:
print(list1+ " and "+list2+ " are anagram")
else:
print(list1+ " and "+list2+ " are not anagram")
Explanation:
Here is a call to the function isAnagram():
list1 =input("Enter String1 ")
list1 =input("Enter String2 ")
isAnagram(list1,list2)
Attached is the run and output for this program