|
Related Questions |
View Answer |
|
What is cyclomatic complexity in a software program?
|
View Answer
|
|
What is path coverage? How path coverage testing done in white box testing?
|
View Answer
|
|
What knowledge is essential to be able to perform white box testing?
|
View Answer
|
|
Given specification: if (a>4) then b= a-1; else b= a+1,
where a and b are integer variables. List all possible test cases that can detect the bug in the following implementation
if (a >=8) b = a-1; else b=a+1;
|
View Answer
|
|
Give one example where you did not find the bug in black box testing but you found the bug in white box testing?
|
View Answer
|
|
What is meant by API Testing? Explain the API Testing process.
|
View Answer
|
|
Explain relation between white box testing and equivalence partitioning ?
|
View Answer
|
|
Why is white box testing called as glass box testing?
|
View Answer
|
|
What are the impacts caused by failure in white box testing?
|
View Answer
|
|
What are Dirty Test Cases?
|
View Answer
|
|
What are the levels of testing in which white box testing can be present?
|
View Answer
|
|
What are the limitations of white box testing?
|
View Answer
|
|
What are the different techniques used in white box testing?
|
View Answer
|
|
Why is White Box Testing needed?
|
View Answer
|
|
What is White Box Testing?
|
View Answer
|
|
What are prerequisites for white box testing?
|
View Answer
|
|
Explain Data Flow Testing? How we will do that? Step by spep procedure?
|
View Answer
|
|
who will do white box testing only developers /testers also ?
|
View Answer
|
|
What are the basic stuff you require to begin creating test cases.
|
View Answer
|
|
How do you do path testing? This is related to whitebox testing.
|
View Answer
|