yogesh dewangan


{ City } hyderabad
< Country > india
* Profession * con.
User No # 60556
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 11
Users Marked my Answers as Wrong # 2
Questions / { yogesh dewangan }
Questions Answers Category Views Company eMail




Answers / { yogesh dewangan }

Question { Wipro, 7502 }

WHAT IS SDLC?
WHAT IS STLC?
WHAT IS THE DIFFERENCE BETWEEN SDLC AND STLC?


Answer

-> SDLC:- System Development Life Cycle (SDLC) is
structured way to develop a Software product.

We have different steps in the SDLC.

Requirement Analysis >> Design >> Implementation (Coding)
>> Verification (Testing) >> Maintenance.

We have 3 SDLC Models.

1. Waterfall Model
2. Spiral Model
3. Iterative and Incremental development

Waterfall Model:- Waterfall Model having the following
phases

1. Requirements analysis
2. Software Design (or Coding)
3. Integration
4. Testing (or Validation)
5. Deployment (or Installation)
6. Maintenance
In a strict Waterfall model, after each phase is finished,
it proceeds to the next one. Reviews may occur before
moving to the next phase which allows for the possibility
of changes (which may involve a formal change control
process). Reviews may also be employed to ensure that the
phase is indeed complete

2. Spiral Model:- The spiral model is a software
development process combining elements of both design and
prototyping-in-stages, in an effort to combine advantages
of top-down and bottom-up concepts

A top-down approach (is also known as step-wise design) is
essentially the breaking down of a system to gain insight
into its compositional sub-systems. In a top-down approach
an overview of the system is first formulated, specifying
but not detailing any first-level subsystems. Each
subsystem is then refined in yet greater detail, sometimes
in many additional subsystem levels, until the entire
specification is reduced to base elements

A bottom-up approach is the piecing together of systems to
give rise to grander systems, thus making the original
systems sub-systems of the emergent system. In a bottom-up
approach the individual base elements of the system are
first specified in great detail. These elements are then
linked together to form larger subsystems, which then in
turn are linked, sometimes in many levels, until a complete
top-level system is formed

Iterative and Incremental development:- Iterative
development prescribes the construction of initially small
but ever larger portions of a software project to help all
those involved to uncover important issues early before
problems or faulty assumptions can lead to disaster.

Is This Answer Correct ?    5 Yes 1 No

Question { Wipro, 4440 }

WHAT IS TEST STRATEGY?
WHAT IS THE DIFF BETWEEN TEST PLAN AND TEST STRATEGY?
WHAT IS TEST METHODOLOGY


Answer

Test plan: Once the requirement analysis is done then we
prepare the
Test Plan. In the Test Plan document we descript Scope,
approach, total time and resources required for the
project, the testing environment and entry and exit
criteria.

Test Strategy: Before start testing we prepare Test
Strategy document. In this document we describe testing
objective, what all the modules need to be test and testing
methodology. Test Strategy is the part of Test Plan.

-> Test methodology is the technical way about how to test
a software. Typically, we refer to black-box and white-box
for methodologies.

Black-box: - With out explicitly use knowledge of the
internal structure, we test the System as per the
functional or System requirements then it call the Black
Box testing.

White-box: - If we are testing the internal logics,
conditions, operations of the code then it call the White
box testing. It is typically used for unit/functional
testing.

Is This Answer Correct ?    6 Yes 1 No