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                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  Testing  >>  Manual Testing
 
 


 

 
 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
Difference between Equalance class partion and boundary
value analysis?
 Question Submitted By :: Suresh
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 1
check the following link
http://www.allinterview.com/showanswers/118
 
Is This Answer Correct ?    0 Yes 1 No
Moderator
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 2
EQUIVALENCE CLASS PARTITION : THIS IS A TECHNIQUE USED IN 
THE BLACK BOX TESTING METHOD, USED TO REFINE THE DATA INTO 
VALID AND INVALID CLASSES 
 FOR EXAMPLE : A TEXT BOX ACCEPTS ONLY ALPHABETS THEN CHECK 
WITH VALID : ENTRING a-z,A-Z THEN WITH INVALID :!@&* AND 
SPACES,12 ETC

BOUNDARY VALUE ANALYSIS: THIS IS A TECHNIQUE USED IN THE 
BLACK BOX TESTING METHOD,USE TO CHECK THROUGH RANGE TO 
MINIMIZE THE TIME , RATHER THAN TESTING WITH WHOLE DATA
FOR EXAMPLE :(1-1000)
HERE NO NEED OF TESTING RIGHT FROM START IE FROM 1 TO 100 
INSTEAD, CHECK WITH THE VALUES 0,1,2,99,100,101
 
Is This Answer Correct ?    9 Yes 3 No
Mnggupta
[Impact]
 
 
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 3
ecp is amethod by which we can deferentiate the test cases
into valid and invalid
where as in bva we have the 3 classes
1)min and maximum
2)min-1& max+1
3)min+1&max-1
 
Is This Answer Correct ?    1 Yes 0 No
Raju
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 4
ECP:here we will partition the input data into various valid
and invalid subclass
BVA:we will check the input datarange with max and min values.
 
Is This Answer Correct ?    0 Yes 2 No
Nagaraj.korke
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 5
Equalance partion is a method of black box testing.for eg 
if the application is accept the values between 10 to 50.we 
are giving  valid and invalid inputs to the system and 
check the status.
  eg inputs valid:25,30
            invalid:9,60
boundary value analyses also method of blackbox testing.in 
this case we r taking boundary vaues for eg in abouve eg 
upper boundary value is 50,and lower boundary value is 10.
               inputs
                     upper boundary 49,51.
                     lower boundary 9,11
                      on boundary   10,50
 
Is This Answer Correct ?    9 Yes 0 No
Sumathirajagopal
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 6
Equivalence partitioning is the test case developed to
identify the maximum possible bugs, to ensure the
application is defect less.

Boundary value analysis is the test case to optimize the
Equivalence Partitioning. ie limit the number of inputs,
such that the application is behaving as expected.
 
Is This Answer Correct ?    1 Yes 1 No
Sathish
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 7
in equalance class partion, we divide the test data into 
subsets of classes.
Example: 
Scanario
1-500
TEST CASES
1)<1     should invalid
2)>500     should invalid
3)in between 1-500     valid

iN BOUNDARY VALUE
WE WILL CHECK 0,1
AND 500,501
 
Is This Answer Correct ?    0 Yes 2 No
Aashsih
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 8
The main difference between EP and BVA is that EP 
determines the number of test cases to be generated for a 
given scenario where as BVA will determine the effectivenss 
of those generated test cases.

Equivalence partitioning :

Equivalence Partitioning determines the number of test 
cases for a given scenario.

Equivalence partitioning is a black box testing technique 
with the following goal:
1.To reduce the number of test cases to a necessary 
minimum. 
2.To select the right test cases to cover all possible 
scenarios. 
EV is applied to the inputs of a tested component. The 
equivalence partitions are usually derived from the 
specification of the component's behaviour. 

An input has certain ranges which are valid and other 
ranges which are invalid. This may be best explained at the 
following example of a function which has the pass 
parameter "month" of a date. The valid range for the month 
is 1 to 12, standing for January to December. This valid 
range is called a partition. In this example there are two 
further partitions of invalid ranges. The first invalid 
partition would be <= 0 and the second invalid partition 
would be >= 13.

... -2 -1  0   1 .............. 12     13  14  15 ..... 
      -------  --------------------   -----------------
 invalid 
partition 1     valid partition       invalid partition 2

The testing theory related to equivalence partitioning says 
that only one test case of each partition is needed to 
evaluate the behaviour of the program for the related 
partition. In other words it is sufficient to select one 
test case out of each partition to check the behaviour of 
the program. To use more or even all test cases of a 
partition will not find new faults in the program. The 
values within one partition are considered to 
be "equivalent". Thus the number of test cases can be 
reduced considerably.
Equivalence partitioning is no stand alone method to 
determine test cases. It has to be supplemented by boundary 
value analysis. Having determined the partitions of 
possible inputs the method of boundary value analysis has 
to be applied to select the most effective test cases out 
of these partitions.

Boundary Value Analysis :

Boundary Value Analysis determines the effectiveness of 
test cases for a given scenario.
To set up boundary value analysis test cases the tester 
first has to determine which boundaries are at the 
interface of a software component. This has to be done by 
applying the equivalence partitioning technique. Boundary 
value analysis and equivalence partitioning are inevitably 
linked together.
For the example of the month a date would have the 
following partitions:
        ... -2 -1  0 1 .............. 12 13  14  15 ..... 
      --------------|-------------------|-------------------
--
 invalid partition 1     valid partition    invalid 
partition 2
By applying boundary value analysis we can select a test 
case at each side of the boundary between two partitions . 
In the above example this would be 0 and 1 for the lower 
boundary as well as 12 and 13 for the upper boundary. Each 
of these pairs consists of a "clean" and a "dirty" test 
case. 
A "clean" test case should give a valid operation result of 
the program. A "dirty" test case should lead to a correct 
and specified input error treatment such as the limiting of 
values, the usage of a substitute value, or in case of a 
program with a user interface, it has to lead to warning 
and request to enter correct data. 
The boundary value analysis can have 6 test cases: n, n-1, 
and n+1 for the upper limit; and n, n-1, and n+1 for the 
lower limit.
 
Is This Answer Correct ?    8 Yes 0 No
Kanad
 
  Re: Difference between Equalance class partion and boundary value analysis?
Answer
# 9
1)Rather than selecting any element in an equi. class as
being, boundary - value analysis requires that one or more
elements be selected such that each edge of the equivalence
class 
2)boundary val depends more on input test condition whereas
equi value test cases depend more on output classes
 
Is This Answer Correct ?    0 Yes 0 No
K.sendhil Kumar
 

 
 
 
Other Manual Testing Interview Questions
 
  Question Asked @ Answers
 
what is protocol in software testing? can u give it with a good example? IndiumSoft2
Hi frnds,im roopesh. i got job in an MNC company on FAQ experience(2.6yrs)..though i know the subject,but i dont know the real time process in a company. so pls can any one tell me vat is the work that i get first & what should i do ? in starting day ven i enter into company vat is environment there ? so pls frnds send the answer soon & give me support plzz..thanking u all.....  10
what are the different types of SDLC? Satyam14
After which phase you are performing UAT?  4
How you test database and explain the procedure? Verizon1
any body can explain me door lock test cases,cell phone test cases, table and chair test cases  3
Hey guys, Developers compile the code they write. That is a kind of testing!! Which category it belongs to in Testing. Static testing or Dynamic testing. Please clarify IBM10
when testing will starts in a project? Ordain-Solutions9
How to Test a C++ and unix application is there any automated tool available, Calsoft1
can automation testing replace manual testing?it it so,how?  4
I have 2 years of exp. in testing and looking for a change if any body knows, about any vacancy in testing then plz contact me on deepti_ac@yahoo.co.in Wipro4
In Testing 10 cases you found 20 bugs then how will you know which bug is for which test case?  1
what are the microsoft six rules for usability? AppLabs2
1) Can you tell me the High severity and low priority bug,High priority and low severity bug? SoftSol2
how to write test case for triangle and sqaure? TCS3
1. Hai, if we are not having any SRS,BRS docs., how can we prepare the test cases & how can we test the application ? 2. In this, is it possible to make 100% bug free.  3
prepare test cases for file copy paste. Approva5
What is severiety and priority of the bug?how do they effect u to report the defect in the builds? Midas-Technologies4
To write the test case for Login Window test condition is 'User must be created'so while writting test case for Login window may I have to write all steps of creating user or how should I write test cases Infotech2
What is the general testing process? Polaris4
 
For more Manual Testing 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