Chapter One
Chapter One
Count =1
Is count
End of
<=10 program
YES
Display count
Count =count +1
Cont..
2. Write the algorithm that find the sum of 5 numbers
Hint: Sum= 1+2+3…5
3. Write the algorithmic description and draw a flow chart to find the following
sum.
Sum = 1+2+3+…. + 50
Algorithmic description
1. Initialize sum too and counter to 1
1.1 If the counter is less than or equal to 50
• Add counter to sum
• Increase counter by 1
• Repeat step 1.1
Else
• Exit
2. Write sum
Cont..
System Development Life Cycle (SDLC)
Brings all the pieces together into a special testing environment, then
checks for errors, bugs and interoperability. The system is tested to
ensure that interfaces between modules work (integration testing),
the system works on the intended platform and with the expected
volume of data (volume testing) and that the system does what the
user requires (acceptance/beta testing).
8. Maintenance