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

Write a Test Case to test Can of Red Bus Booking

2 Answers  


What are semi-random test cases?

0 Answers  


Write negative test case for logout????? Answer soon friends

2 Answers  


write a test cases for advanced search

1 Answers   Satyam,


Positive and Negative test cases for the speedometer?(minimum 5 each)

0 Answers   Bosch,






Writing Test Cases is Verification or Validation? Executing Test Cases is Verification or Validation?

9 Answers  


Test cases on uplaoding files

12 Answers   GE, HP,


i need Usability test case for home page?

4 Answers  


write a test cses for sending mails through microsoft- outlook xpress?

4 Answers   HCL,


Can any one please tell me what is the use of negative test cases when we are giving the invalid input in test data

3 Answers  


write test cases for this senario if a job fails it should get restarted again this should happen for three times if it fails again then it should quit?

1 Answers   TCS,


For example out of 100 test cases if I ask you to automate how many you can automate?

13 Answers   HCL, MBT,


Categories