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 ?

Answers were Sorted based on User's Feedback



This question is regarding MC/DC coverage (A and B) or (B and C) or (A and C) ? how many condi..

Answer / 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 ?    7 Yes 5 No

This question is regarding MC/DC coverage (A and B) or (B and C) or (A and C) ? how many condi..

Answer / vikalp

A B C DICTION
T T F T
T F T T
F T T T
TAKE ANY ONE FOR ONE DICTION FAIL
T F F F
F T F F
F F T F

Is This Answer Correct ?    14 Yes 13 No

This question is regarding MC/DC coverage (A and B) or (B and C) or (A and C) ? how many condi..

Answer / thecloudstrap

MCDC stands for Modified Condition/Decision coverage as per DO-178C. You can find more information here:
http://thecloudstrap.com/mcdc-interview-questions/

and for do178c, you can visit here:
http://thecloudstrap.com/do178c-interview-questions/

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Test Cases Interview Questions

What is the difference between test scenarios, test cases, and test script?

1 Answers  


How to write the test scenarios for the following: 1. Searching train. 2. Data encryption and decryption. 3. Single signon. 4. Document printing. 5. Testing EMail. 6. Data authentication.

1 Answers   HCL,


What are the test scenario's for pen like high priority high seviority?

4 Answers   NetWeb, Zycus Infotech,


Write test cases to test a browser app

1 Answers  


Is there any formula to find the number of test cases needed

4 Answers   Satyam,


Explain the exactly meaning of test case?

1 Answers  


write the system testcase and functional testcase for the below scenario scenario: view the balance in online account

5 Answers   CTS,


what is scenario? how to write scenario?

3 Answers   Alliance One,


What are the test cases, we can write for Data Grid. Anybody can help me..Thanks in advance.

5 Answers   Siemens,


If I have to write the test cases for any report & there is date box.then may I have to write only select date or have to write all steps required for selecting date

1 Answers  


How to test Webservices and how can we write test cases for that

1 Answers  


test cases for calculator ,this should accept integer form +99 to -99(perform addition operator).need to raise defects

4 Answers   Wipro,


Categories