Software Engineering (2160701)

BE | Semester-6   Summer-2017 | 04/27/2017

Q4) (c)

Consider the program given below<br / void main() {<br / int i,j,k;<br / readln (i,j,k);<br / if( (i < j) || ( i > k) )<br / {<br / writeln("then part");<br / if (j < k)<br / writeln ("j less then k");<br / else writeln ( " j not less then k");<br / }<br / else writeln( "else Part");<br / }<br / (i) Draw the flow graph.<br / (ii) Determine the cyclomatic complexity.<br / (iii) Arrive at all the independent paths.

DATA NOT FOUND