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 / 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 / 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

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

pls let me know the answer, recently i faced this question in interview. when you are writing the test cases,if the requirements are changed what will u do?

4 Answers   Wipro,


how many checkpoint u have to used

3 Answers  


write a test case for authentication of a login page from database

1 Answers  


Explain the functional testing?

0 Answers  


What is the toughest moment you faced in your testing carrier in which everyone praised you?

0 Answers  






Do you know mutation testing?

0 Answers  


Define some of the attributes of a test case?

0 Answers  


Test case for flight reservation system

1 Answers  


How to write test scenarios for a Web application, with an example?

3 Answers   Deloitte, LiveTech, TCS,


How to write test case for the library system?

0 Answers  


What are the test cases to write to test user account locksout after 5 invalid attempts

2 Answers  


Pls can any 1 temme the test cases for an online banking proj. like account transaction summary, deposit module, savings module

1 Answers  


Categories