Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question#4 Read the code carefully and perform the following tasks: Draw Control Flow Graph for the given code Highlight all regions in the flow graph
Question#4
Read the code carefully and perform the following tasks:
- Draw Control Flow Graph for the given code
- Highlight all regions in the flow graph separately
- Using cyclomatic complexity formula, calculate number of basis path tests.
Show path of each basis path test separately.
while(x<100)
{
if(a[x]%2==0)
{ parity=0; }
else
{ parity=1; }
switch(parity)
{ case 0:
cout<
case1:
cout<
default:
cout<
}
x++;
} p=true;
Step 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