|
Question |
Rating |
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 |
|
Why is white box testing called as glass box testing? |
|
View Answer |
|
Explain relation between white box testing and equivalence partitioning ? |
|
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 |
|
What are the limitations of white box testing? |
|
View Answer |
|
who will do white box testing only developers /testers also ? |
|
View Answer |
|
What are Dirty Test Cases? |
|
View Answer |
|
What is merits and demerits of white box and black box testing?
|
|
View Answer |
|
What is meant by API Testing? Explain the API Testing process. |
|
View Answer |
|
What are the basic stuff you require to begin creating test cases?
|
|
View Answer |
|
What are prerequisites for white box testing? |
|
View Answer |
|
How do you do path testing? This is related to whitebox testing.
|
|
View Answer |
|
What are the basic stuff you require to begin creating test cases. |
|
View Answer |
|
What are the tables in testplans and testcases?
This concept is related to Whitebox testing in SQL.
|
|
View Answer |
|
What knowledge is essential to be able to perform white box testing? |
|
View Answer |
|
What are the different techniques used in white box testing? |
|
View Answer |
|
What is cyclomatic complexity?
|
|
View Answer |
|
Who performs white box testing? The developer or the tester? |
|
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 |