Question: Question 1: (15 Marks) a. Write minimum test cases for statement coverage b. Write minimum test cases for branch coverage c. Find the cyclomatic complexity

 Question 1: (15 Marks) a. Write minimum test cases for statement

Question 1: (15 Marks) a. Write minimum test cases for statement coverage b. Write minimum test cases for branch coverage c. Find the cyclomatic complexity of the graph using all the formulas we studied in class. d. Identify a set of basis paths for the graph and write its test cases. #include using namespace std; int main() { int n,r,sum=0,temp; cout>n; temp=n; while(n>0) { r=n%10; sum=(sum*10)+r; n=n/10; } if(temp==sum) cout

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!