Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

4C78 4E8

Given By: Mr. Sandeep Tayal

SOFTWARE ENGINEERING (ETCS-252)


Tutorial sheet 5
Q11. Drive an expression for peak manning of a project using Nordes / Rayleigh
Equation.
Q12. Consider the program given below

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

Q13. Consider a project for which the manpower requirement is 200 PY and the
development time is 2 years. Calculate the peak manning time.
Q14. A software project is planned to cost 95PY in a period of 1 year and 9 months.
Calculate the peak manning and average rate of software them build up.
Q15. Write a program in C to add two numbers and then calculate the values of then
following software science metrics:
(i) n (vocabulary of a program )
(ii) N (program length)
(iii)V (Volume)
(iv) L (program level)

You might also like