Control flow testing in white box – static or dynamic?
Yesterday I asked a question that happened to have another meaning inside. I can see that Control/data flow is often mentioned to be static analysis (when tools is used) or dynamic analysis testing in terms of white box testing. Could it be that automatic analysis tools can just help by creating graphs or they do actually test it with inputs (then it would not be static IMHO).
Flow Chart – While Loops process
I’m having difficulties understanding whether or not this is the right process to use for a flow chart which illustrates the processes involved in an algorithm.
Flow Chart – While Loops process
I’m having difficulties understanding whether or not this is the right process to use for a flow chart which illustrates the processes involved in an algorithm.
Problem on recursion
void function(int x){ if(x<=0) return; function(x–); } This is a recursion function which is called with the value of x = 20. The Recursive call will take place in this way function(20)…function(19)…….function(0) Each function call will use some memory and if the data is big it will throw StackOverflowException. So what I want to know […]