Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Hi, Below is a question on white box testing. Kindly help
me in answering it. How many test cases are needed to
obtain 100% branch coverage. This question was asked in
ISTQB foudation level exam - Dec21 2008.

Read(A,C)

If(A<10) then Print A;

Endif

If(C>100) then Print C is greater then A

else if(C<100) then print only C

Endif else

Options -
a. 4
b. 3
c. 2
d. 1

Kindly answer with explanation so that it would be easy to
understand

Answers were Sorted based on User's Feedback



Hi, Below is a question on white box testing. Kindly help me in answering it. How many test cases ..

Answer / rama mohan parini

Require 3 Path test cases.

Test Case 1 - A is any value > 9 and C = 100 to check that
nothing is printed.

Test Case 2 - A is any value < 10 and C is > 100 to check
that Print A and
Print C is greater than A lines are printed

Test Case 3 - A is any value, and C is < 100 to check that
Print A ( only if A is < 10)
Print C is greater than A is printed.

We should use Cyclomatic complexity formula to calculate
number of paths easily

C = E - N + 2

Is This Answer Correct ?    4 Yes 2 No

Hi, Below is a question on white box testing. Kindly help me in answering it. How many test cases ..

Answer / hima bindu

Number of testcases required for branch coverage will be 2.

In branch coverage we need to check whether all the
branches are exercised.
Here we have 3 branches all If statements we need to
consider.They are A<10,C>100,C<100

Line 1 - Read(A,C)
Line 2 - If(A<10) then
Line 3 - Print A;
Line 4 - Endif
Line 5 - If(C>100)then
Line 6 - Print C is greater then A
Line 7 - else if(C<100) then
Line 8 - print C
Line 9 - End if

So take the values as follows
Testcase 1 : A=5 and C=120
For this set of values Line1 - Line6 are executed

Now for the Line7 - Line9 to be executed take the value of
c as less than 100
So Testcase 2 : A=5(can be any value as Line 2,3,4 are
already exercised in testcase1)and c=80
For this set of values Line7-Line9 will be exercised

Is This Answer Correct ?    2 Yes 2 No

Hi, Below is a question on white box testing. Kindly help me in answering it. How many test cases ..

Answer / madhu

3 cases would be required
as we need to exercise both positive and negative scenarios
of the 2 branches

Is This Answer Correct ?    0 Yes 0 No

Hi, Below is a question on white box testing. Kindly help me in answering it. How many test cases ..

Answer / ravo

two tests are required

Is This Answer Correct ?    1 Yes 3 No

Hi, Below is a question on white box testing. Kindly help me in answering it. How many test cases ..

Answer / kajal

answer is a.4

1 test case to check if system can read a and c
2 to check if a<10
3 to check if c is > 100 and < 100
to check if a and c are printed

Is This Answer Correct ?    2 Yes 5 No

Hi, Below is a question on white box testing. Kindly help me in answering it. How many test cases ..

Answer / varshab

Ans is 4 as there are two branches.For these two branches
we need to test for both true & false conditions. hence to
achieve 100% branch coverage we need to write 4 test cases.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Manual Testing Interview Questions

What is severity ?

4 Answers   CSS,


When a bug posted by QA is rejected by Dev and Dev says is not a bug. How to convince Dev that it is a valid bug?

11 Answers   GE,


what is the purpose of test design technique

2 Answers  


A Good Test Case Means..?

9 Answers  


What is the Stub abd the driver ?Are these both using at the time of Top-up approach of integration testing and bottom-down approach testing .?

3 Answers   Kanbay,


what is status of defect when you are performing regression testing.

8 Answers   Mascon,


what are the testing methodologies?

6 Answers   GE, Infosys, Patni, Wipro,


May i know high priority&low seviarity,high seviarity&low priority

13 Answers   DELL, GL Noble Denton, iGate, Wipro,


Hi Could someone please provide Siebel Testing Interview questions for 5 years exp.

0 Answers  


what is scenario????

6 Answers  


Name the Documents which are send to client once testing is completed?

7 Answers   Polaris,


Why do u choose Testing as ur career?

10 Answers   Minecode,


Categories