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
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 |
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 |
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 |
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?
how many checkpoint u have to used
write a test case for authentication of a login page from database
Explain the functional testing?
What is the toughest moment you faced in your testing carrier in which everyone praised you?
Do you know mutation testing?
Define some of the attributes of a test case?
Test case for flight reservation system
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?
What are the test cases to write to test user account locksout after 5 invalid attempts
Pls can any 1 temme the test cases for an online banking proj. like account transaction summary, deposit module, savings module