Question: [5 pts.] How do you perform Dynamic and Static testing techniques, and what is the difference between the two testing methods? [5 pts.] Explain the

[5 pts.] How do you perform Dynamic and Static testing techniques, and what is the difference between the two testing methods?

[5 pts.] Explain the PDCA for quality assurance.

[5 pts.) Draw a cause-and-effect diagram to analyze a software failure when attempted to view your account transactions on your on-line banking. (either copy/paste your diagram or upload a png,jpg file)

[5 pts.] Explain the approaches to software debugging?

[5 pts.] Develop all the necessary test cases to ensure 100% statement coverage for the following code:

sum (Int a, Int b) { Int result = a+ b; If (result> 0) Print ("Positive", result) Else Print ("Negative", result) }  

19. [5 pts.] Explain the two methods for evaluating Test Adequacy.

20. [5 pts.] Draw a Control Flow Graph (CFG) for the following binSearch code:

(either copy/paste your diagram or upload a png,jpg file)

int binSearch(int X, int V[], int n) {  int low, high, mid;  low = 0;  high = n - 1;  while (low <= high) {  mid = (low + high) / 2;  if (X < V[mid]) {  high = mid - 1;  } else if ( X > V[mid]) {  low = mid + 1;  } else {  return mid;  }   }  return -1 }  

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!