Describe to me the Software Development Life Cycle as you
would define it.
Answers were Sorted based on User's Feedback
SDLC is divided into 6 stages
1. Information Gathering
2. Requirement Analysis
3. Design
4. Coding
5. Testing
6. Maintainence
| Is This Answer Correct ? | 24 Yes | 0 No |
Answer / raghu ram
actually S.D.L.C contains six phases.It explains how
software application is developed and also explains what
are the roles involved
1.Intial phase
2.analysis phase
3.design phase
4.coding phase
5.Testing phase
6.delivery and maintainance
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / indira varma
sdlc is nothing but s/w development life cycle
it contains 6 phases each phase has
roles,responsibilities,doc and standards
1.intial phase:
role : BA
responsibilities:he try to get all REQ FROM THE customer
doc: frs(functional requirement spec)
standards: as per the company standards.
2.analysis phases :
role : sa (system analyst)
responsibilities: analyze the req,
create tentative project plan,
system specifications,
technology selection.
doc: srs(system requirement spec)
standards : as per the company standards
design phase :
to types of designs is there
1 high level design
2 low level design
role:
hldc is done by the pm.
lld is done by the tl
doc: tdd(technical design doc)
coding phase :
role : developer develops the code
standards: as per the coding standard es
doc : source code doc
testing phase:
-> study of frs,
-> getting knowledge once we get 100% functional knowledge
-> start writing test cases
-> once application is ready for testing
-> execute the test cases
-> test cases who have failed res are consider as defects
->send back to the developer for the fixation of defects
-> tester again check the defects are really fixed or not
-> this process is going on up to application is defect free
doc: defect profile doc, test case doc
last phase is delivery and maintain c phase:
application is delver to the client as per the agreement
previously made we provide maitance
doc: deployment doc,
user manual ,
s/w release note.
certification doc,
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / raghu ram
The SDLC is divided into 6 stages
1)intialphase or requirement phase
2)analysis phase
3)design phase
4)coding phase
5)devolopment phase
6)deployment and maintainence phase
| Is This Answer Correct ? | 10 Yes | 4 No |
Answer / venu kumar
1)Initialisation the process of the project size,scope
outlay,Plan
2)Requirement-gathering requirements
3)Design Phase- Automation business process SW/HW
4)Code Phase-Development phase of the application
functionality
5) Integration: Automation of Business process through
system
6) Implementation and support
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rubi
like creatures having definite life cycle software also has
a definite life cycle. It has six phases
* requirement
* design
* coding
* testing
* implementation
* maintanence
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / koshy
1. Feasibility study
2. requirement Analysis
3. Design
. Prototyping
. Implementing
. Validation
. Testing
. Operation
| Is This Answer Correct ? | 1 Yes | 0 No |
can u tell me how do we writetestcases for perfomance,load,And stress?
What are the Test Cases Comes under Regression Suite?
write the system testcase and functional testcase for the below scenario scenario: view the balance in online account
Can any body explain How to Install the QC9.0 on XP OS
what are test repository???? need for test repository/need for maintaining test cases?? advantages and disadvantages for maintaining test case??
can u say me how many test cases i can get for a user to login and enter password ..please specify in testcase desing template for that
write the testcases for a triangle ABC. given length of 3 sides of a possible triangle, check whether 3 sides do indeed form a triangle or not if they do then state whether the triangle is scalene, isoceles or equilateral. Note that the sum of any two sides of a triangle should be greater than third side. A+B>C B+C>A A+C>B. need urgently. thank u... by priya
6 Answers Barclays, Stag Computers,
what is difference between repeatable and reusable test case?and what is self cleaning test cases?
Anyone can please inform me about how to write test cases for any mathematical calculations. Say for example, we have a formula in a given scenario for calculating the interest. The given formula for interest is: (principle * 5)/(12 * 100) In this case, the principle amount may vary. Would like to know how many test cases can be written for this scenario and how can we decide over this. I will be very thankful for the answer....
What is STATEMENT COVERAGE testing
Can any one tell me how to write test data. i mean, to test each input, 2 test input(1 for +ve, & other for -ve) are given. so , for example, if i want to write test data for login form, how many test data should i write in test case?
If the pseudo code below were a programming language ,how many tests are required to achieve 100% statement coverage? 1. If x=3 then 2. Display_messageX; 3. If y=2 then 4. Display_messageY; 5. Else 6. Display_messageZ; 7. Else 8. Display_messageZ; A. 1 B. 2 C. 3 D. 4