Give examples of boundary value and equivalence
partitioning test cases.

Answers were Sorted based on User's Feedback



Give examples of boundary value and equivalence partitioning test cases...

Answer / prince

1000-2500----->no tax
2501-4000---->tax 5% of there Salary.
In EQUIVALENCE : values from 0 t0 999 is put together in
one class c1-means it shd behave in same manner- invalid
values
values from 1000 to 2500 in class c2 - notax
values from 2501 to 4000 in class c3- 5% of there salary
like wise grouping the values in bifferent classes,
To put this in simpler words, since it is practically
infeasible to do exhaustive testing, the next best
alternative is to check whether the program extends similar
behaviour or treatment to a certain group of inputs. If
such a group of values can be found in the input domain
treat them together as one equivalent class and test one
representative from this. This can be explained with the
above example.

Boundary Value: taking the above example
1. if user typedin 999rs -it shd promt as invalid
2. when 1000rs it shd not promt as invalid and no tax shd
be taken.
3. when 2501 is typed 5% of tax shd be taken

this is called Boundary value

Is This Answer Correct ?    62 Yes 18 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / romario

equivalence partitioning
--------------------------
consider a form field which ask for the age of a person.
let the age should be >=18 and <=50.
this range can be divided into three classes.

==>> values less than 18(invalid class)
==>> values between 18-50(valid class)
==>> value greater than 50(invalid class)

we can see that there are two invalid and one valid class.
it is not necessary that we have to use multiple values
from each class.One value from each class is more than
enough.

Boundary Value Analysis
--------------------------
consider the same scenario used above.

here we can give the test inputs as follows
==>>lower limit+1 & lower limti-1(ie. 17 & 19)
==>>lower & upper limits (ie. 18 & 50)
==>>upper limit+1 & upper limit-1 (ie 49 & 51)

There will be six test inputs when we are using boudary
value analysis.

Is This Answer Correct ?    48 Yes 6 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / akhil mohan

For the instance consider the 10 digit mob number which
starts with 9,so the valid range can be from 9000000000 to
9999999999.Then by boundary value analysis we get 6 input
data
1.Input less than lower boundary => 9000000000-1.
2.Input equals to the lower boundary => 9000000000.
3.Input greater than the lower boundary =>1 9000000000+1.
4.Input less than upper boundary => 9999999999-1.
5.Input equals to the upper boundary => 9999999999.
6.Input greater than the uppper boundary => 9999999999+1.

From the above test cases four test(2,3,4,5) cases will
pass the conditions and rest two(1,6) will fail.

Is This Answer Correct ?    49 Yes 8 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / rinesh

For the instance consider the 5 digit mob number which
starts with 9,so the valid range can be from 90000 to
99999.Then by boundary value analysis we get 6 input
data
1.Input less than lower boundary => 90000-1.
2.Input equals to the lower boundary => 90000.
3.Input greater than the lower boundary =>1 90000+1.
4.Input less than upper boundary => 99999-1.
5.Input equals to the upper boundary => 99999.
6.Input greater than the uppper boundary => 99999+1.

From the above test cases four test(2,3,4,5) cases will
pass the conditions and rest two(1,6) will fail.

Is This Answer Correct ?    38 Yes 2 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / balu varma

lets consider the behavior of
tickets in the Flight reservation application , while
booking a new flight. Ticket values 1 to 10 are considered
valid & ticket is booked.

In equivalence partion :
-------------------------
1 to 10 ----> valid
<1 ----> invalid
>10 ----> invalid

ie. 0 and 11 are invalid
1 to 10 valid.
Boundary value analysis :
-------------------------
min =1
max=10
min-1=0
max+1=11

1 and 10 are valid
0 and 11 are invalid

Is This Answer Correct ?    18 Yes 3 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / m.kamala priya

Equivalence Partioning :
Lower 18
Upper 50
Between 18-50
(19-49)
Here We miss some test cases ie. in the boundary values

Boundary Value Analysis:
(18-1,18,....50,50+1)
By this We Can Write the Test Cases Very Effective and here
reputation of data is allowed this is the one of the
drawback here

Is This Answer Correct ?    21 Yes 7 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / arghodip roy

To understand this better , lets consider the behavior of
tickets in the Flight reservation application , while
booking a new flight. Ticket values 1 to 10 are considered
valid & ticket is booked.

In equivalence partion :
-----------------------------

Invalid valid Invalid -----> 3 partitions class

-9 -8.. 0 | 1...10 | 11....999999 and so on

Boundary value analysis :
--------------------------

0,1,10,11 are BVA .

Is This Answer Correct ?    14 Yes 5 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / bhanuchandar

if we consider sinx where "x" ranges from 0-360degrees then what will be value of "x" for equivalnce partitioning ?

Ans:if x=180 then the equivalence partitioning is possible because 180-x,180+x forms the sine curve to be satisfied.

Is This Answer Correct ?    11 Yes 9 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / raghavendra

boundary value:
for int suppose boundary is say 1 to 50
then test for 0,2 values & 49, 51 vales.

for string... test for null or length or capacity of
string(size).

equivalence partitioning:
e.g.: divide(a,b) ...boundary -50 to +50
(do not forgot zero for 'b')
test for... -51, and -1 --------(1)
also 1, and +51 ------------(2)
(1),(2) are two partition.

Is This Answer Correct ?    48 Yes 68 No

Give examples of boundary value and equivalence partitioning test cases...

Answer / amar

bva

let takee 1 to 50

boundaries are 1 and 50

Equivalence

1 to 9
1 2 3 4 5 6 7 8 9

5 is the equivalence

Is This Answer Correct ?    16 Yes 40 No

Post New Answer

More Test Cases Interview Questions

how to write test cases for "Browse" button.

6 Answers   Accenture,


What is the difference between Test Input and Test Data??

2 Answers  


We r developing one Web Site for construction company. In that Web site we have different option like About Us,Contact Us,Home,Sites,Site Map,Search Etc........ and front page of that web application contains 6 different pictures means single page contain 6 pics etc... write Test plan ,Test Scenarios,Test Case ....Plz answer this question ASAP

2 Answers  


How many test cases can u write 1) File - open dialog box in notepad pleasse write

5 Answers  


Roads concatenation Problem Consider we have some GIS (Geo Information System) operating over some road network. Each road represented as array of two-dimensional geographical points. Road network is a set of roads. System has function called Concatenate(). This function takes raw road network and should return optimized road network. Optimization lies in concatenating roads with matching start or end points, i.e. if road AB end point matches road BC start point, then optimized network should contain concatenated road AC. Optimized network shouldn’t contain two roads which can be concatenated. Your task is to suggest set of test cases for Concatenate() function in order to make sure it works correctly. public interface IPoint { double Lat { get; } double Lon { get; } } public Road : List<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);

0 Answers   Infosys,






write test cases on file open dialog box in notepad

0 Answers  


For the following piece of code, how many test cases are needed to get 100% statement coverage? Procedure X Read (Color) // Input color from user IF (Color == “Red”) THEN Call Roses(Color) ELSEIF (Color == “Blue”) THEN Call Violets(Color) ELSE PRINT “User is no Shakespeare” SaveToDatabase(Color) End Procedure X A. 5 B. 3 C. 1 D. 2

1 Answers   ISTQB,


What is the Difference between Testing Types and Testing Techniques

4 Answers   ISTQB,


how to write test cases for smart meter for gas and electricty

0 Answers  


how we write a jwebunit test case for check whether the ip address correct or not.

0 Answers   TCS,


how to write test cases for the example state name starts with A B C D E F G H I J K L Z

0 Answers  


write the test cases for a+b=c?

9 Answers   Aloha Technology, SAP Labs,


Categories