Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The purpose of this assignment is to reinforce the lecture material on structural testing, independent paths, and path predicates. For each of the source code
The purpose of this assignment is to reinforce the lecture material on structural testing,
independent paths, and path predicates. For each of the source code fragments below 1)
construct a set of independent paths through the source code fragment 2) construct a path
predicate for each independent path. You must use line numbers to describe the independent
paths and use Boolean conditions from the source code to describe the path predicates.
Example of response format is shown in Figure 1.
ACTUAL PROBLEM:
Example 1. void 00) ( if (C1) S1; if (C2) ( S2 while (C3) S3 else 10. while (C4) S5 12 13 15 16 17 S6 Answer: V(G) 5 Path # C1 C2 C3 CA Path 1-2-11-12-16 1-2-11-12-13-12-16 1-2-4-5-8-9-16 1-2-4-5-6-8-9-1 1-2-4-5-8-4-5-8-9-16 Legend: T true, F false, Xirrelevant Figure 1. Example showing response format Problem 1: 1 void Q1)( S1; if(C1)( S2; else( S3; 2 if (C2) S4; 10 else( 12 13 14 15 16 S5; S6Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started