This question is regarding MC/DC coverage

(A and B) or (B and C) or (A and C) ?

how many conditions are there in above expression?
what are the test cases for statement, decision, condition,
MC/DC and multiple condition overage

explain in deatil why ?

Answer Posted / deepz

(A and B) or (B and C) or (A and C)
(A&&B)||(B&&C)||(A&&C)
// reduce to boolean form
(AB)+(BC)+(AC) //simplify it
ABC+AC+BC+ABC
ABC+AC+BC
AC(B+1)+BC
AC+BC
=C(A+B)

i.e C&&(A||B)
test cases will be

C A B Decision
T T F T
F T F F
T F F F
T F T T

Is This Answer Correct ?    6 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is quick test professional and what test environment it supports?

913


What is gray box testing?

935


What is business validation test case?

894


I want 100 test scenario for gmail

4110


how to write a test cases for Quick links like Feedback/Suggestions Advertise with us Contribute Invite a Friend FAQs Make HomePage RSS Feed Buzz Words Email Privacy Statement Terms & Conditions Copyright Disclaimer Download Forgot Password

2799


Explain the smoke testing?

845


By clicking the file button on a Word document and opening the Print window, Identify what needs to be white box tested and what needs black box testing. (On the black box testing items, identify boundary conditions and equivalence partition testing is possible and give data examples.)

1038


Write all test cases for Bus Pass Renewal

1286


What is the domain testing?

864


Explain the scalability testing?

868


write the test cases for facility module

1431


Please guide me for Add new user test cases

1314


write test case for pen cap if it is not present?

2295


Can any tell to create test data for SUM (calculation), Scenario is 0 to 9 digits are available as we see in the calculator, I want to certify that the sum of the two numbers are working fine by providing test data.

2316


A wholesaler sells printer cartridges. The minimum order quantity is 5. There is a 20% discount for orders of 100 or more printer cartridges. You have been asked to prepare test cases using various values for the number of printer cartridges ordered. Which of the following groups contain three test inputs that would be generated using boundary value analysis?

1805