ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Testing  >>  Testing AllOther
 
 


 

 
 Automation Testing interview questions  Automation Testing Interview Questions
 Manual Testing interview questions  Manual Testing Interview Questions
 QA Concepts interview questions  QA Concepts Interview Questions
 Mobile Testing interview questions  Mobile Testing Interview Questions
 Test Cases interview questions  Test Cases Interview Questions
 Test Documents Reporting interview questions  Test Documents Reporting Interview Questions
 Testing AllOther interview questions  Testing AllOther Interview Questions
Question
Explain the V-Model?
 Question Submitted By :: Shailu
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Explain the V-Model?
Answer
# 1
Business Case
The first step in development is a business investigation 
followed by a "Business Case" produced by the customer for 
a system. This outlines a new system, or change to an 
existing system, which it is anticipated will deliver 
business benefits, and outlines the costs expected when 
developing and running the system.

Requirements
The next broad step is to define a set of "Requirements", 
which is a statement by the customer of what the system 
shall achieve in order to meet the need. These involve both 
functional and non-functional requirements. Further details 
are in the requirements article.

System Specification
"Requirements" are then passed to developers, who produce 
a "System Specification". This changes the focus from what 
the system shall achieve to how it will achieve it by 
defining it in computer terms, taking into account both 
functional and non-functional requirements.

System Design
Other developers produce a "System Design" from the "System 
Specification". This takes the features required and maps 
them to various components, and defines the relationships 
between these components. The whole design should result in 
a detailed system design that will achieve what is required 
by the "System Specification".

Component Design
Each component then has a "Component Design", which 
describes in detail exactly how it will perform its piece 
of processing.

Component Construction
Finally each component is built, and then is ready for the 
test process.

Types of Testing
The level of test is the primary focus of a system and 
derives from the way a software system is designed and 
built up. Conventionally this is known as the "V" model, 
which maps the types of test to each stage of development.

Component Testing
Starting from the bottom the first test level is "Component 
Testing", sometimes called Unit Testing. It involves 
checking that each feature specified in the "Component 
Design" has been implemented in the component. 

In theory an independent tester should do this, but in 
practise the developer usually does it, as they are the 
only people who understand how a component works. The 
problem with a component is that it performs only a small 
part of the functionality of a system, and it relies on co-
operating with other parts of the system, which may not 
have been built yet. To overcome this, the developer either 
builds, or uses special software to trick the component 
into believing it is working in a fully functional system.

Interface Testing
As the components are constructed and tested they are then 
linked together to check if they work with each other. It 
is a fact that two components that have passed all their 
tests, when connected to each other produce one new 
component full of faults. These tests can be done by 
specialists, or by the developers. 

Interface Testing is not focussed on what the components 
are doing but on how they communicate with each other, as 
specified in the "System Design". The "System Design" 
defines relationships between components, and this involves 
stating:

What a component can expect from another component in terms 
of services. 
How these services will be asked for. 
How they will be given. 
How to handle non-standard conditions, i.e. errors. 
Tests are constructed to deal with each of these. 

The tests are organised to check all the interfaces, until 
all the components have been built and interfaced to each 
other producing the whole system.

System Testing
Once the entire system has been built then it has to be 
tested against the "System Specification" to check if it 
delivers the features required. It is still developer 
focussed, although specialist developers known as systems 
testers are normally employed to do it. 

In essence System Testing is not about checking the 
individual parts of the design, but about checking the 
system as a whole. In effect it is one giant component. 

System testing can involve a number of specialist types of 
test to see if all the functional and non-functional 
requirements have been met. In addition to functional 
requirements these may include the following types of 
testing for the non-functional requirements:

Performance - Are the performance criteria met? 
Volume - Can large volumes of information be handled? 
Stress - Can peak volumes of information be handled? 
Documentation - Is the documentation usable for the system? 
Robustness - Does the system remain stable under adverse 
circumstances? 
There are many others, the needs for which are dictated by 
how the system is supposed to perform.

Acceptance Testing
Acceptance Testing checks the system against 
the "Requirements". It is similar to systems testing in 
that the whole system is checked but the important 
difference is the change in focus:

Systems Testing checks that the system that was specified 
has been delivered. 
Acceptance Testing checks that the system delivers what was 
requested. 
The customer, and not the developer should always do 
acceptance testing. The customer knows what is required 
from the system to achieve value in the business and is the 
only person qualified to make that judgement. To help them 
courses and training are available. 

The forms of the tests may follow those in system testing, 
but at all times they are informed by the business needs.

Release Testing
Even if a system meets all its requirements, there is still 
a case to be answered that it will benefit the business. 
The linking of "Business Case" to Release Testing is looser 
than the others, but is still important. 

Release Testing is about seeing if the new or changed 
system will work in the existing business environment. 
Mainly this means the technical environment, and checks 
concerns such as:

Does it affect any other systems running on the hardware? 
Is it compatible with other systems? 
Does it have acceptable performance under load? 
These tests are usually run the by the computer operations 
team in a business. The answers to their questions could 
have significant a financial impact if new computer 
hardware should be required, and adversely affect 
the "Business Case". 

It would appear obvious that the operations team should be 
involved right from the start of a project to give their 
opinion of the impact a new system may have. They could 
then make sure the "Business Case" is relatively sound, at 
least from the capital expenditure, and ongoing running 
costs aspects. However in practise many operations teams 
only find out about a project just weeks before it is 
supposed to go live, which can result in major problems.

Regression Tests
With modern systems one person's system, becomes somebody 
else's component. It follows that all the above types of 
testing could be repeated at many levels in order to 
deliver the final value to the business. In fact every time 
a system is altered.

 
Is This Answer Correct ?    6 Yes 3 No
Shailu
[American Express]
 
  Re: Explain the V-Model?
Answer
# 2
In v-model testing pahse is done parallely with the 
developement phase.
 
Is This Answer Correct ?    5 Yes 2 No
Roshini
 
 
 
  Re: Explain the V-Model?
Answer
# 3
V-model is nothing but test approach based on 
the way the software should be build.In v-model testing 
pahse is done parallely with the 
developement phase.


  SRS                               user acceptance

    ANALYSIS                      system testing

        HLD                    Integration testing

          LLD                Unit Testing

                   Coding

In V-model, testing phase start as soon as get the SRS.

Thanks,
Muthuraman.K
 
Is This Answer Correct ?    5 Yes 0 No
Muthuraman
 

 
 
 
Other Testing AllOther Interview Questions
 
  Question Asked @ Answers
 
what is meant by Test suite  4
Is automated testing better than manual testing. If so, why Wipro2
Foundations of Software Testing by Dorothy Graham, Erik Van Veenendaal,Isabel Evans ,Rex Black. i need this e-book please help me it is very urgent ISTQB2
Hi, Can nybody tel me the how much a Manual tester should know about Database and its connections with the web application?  3
What is mean by release notes? TCS1
what is thee diff between functionality testing and blockbox testing? MBT3
What is the minimum criteria for white box?  1
wht is release management . did the tester will involve in the release management TCS1
What parameters to consider for Performance Testing? Virtusa4
Where do you see yourself five years from now?  3
If you had 10 days to deliver the product but the Lead tells to deliver it in 6 days, then How and what Testing Techniques or Strategy you will follow inorder to deliver it in short time (6 days)  3
Explain me about test scenarios? How will you write it? Accenture2
Does functional testing comes under Black box or white box testing? Infeneon-Technologies4
What are the steps to test a Website? Please advise.  2
I got job in maveric a testing company. there is 3 years bond. and they are taking all original certificates. I am unable to decide whether to join or not. please let me know whether it is a good company or not. its website is www.maveric-systems.com  1
I want to do the Testing Project Course, which Institute is best in Hyderabad?  3
wht is the diff b/w functional testing and intehration testing  1
HOW DO YOU COMMUNICATE WITH THE DEVELOPER ON DEFECT?  1
a step by step procedure on the action in testing and verifying of results is called a CMC1
hai, this is neelima... what is testing...?wht r the types of testing...?  6
 
For more Testing AllOther Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com