Software Engineering - Fundamentals
Consider this simplified code snippet representing phases in a software process model:
What will be the output?
phases = ['Requirements', 'Design', 'Implementation', 'Testing']
for i in range(len(phases)):
print(phases[i])
if i == 2:
print('Review before Testing')What will be the output?
