Given specification: if (x >2) then print 2*x; else print 2+x, where x is an integer variable. From the perspective of blackbox testing, discuss whether the following implementation is faulty if (x>=2) print (2*x) ;else print (2+x);

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions