0% found this document useful (0 votes)
27 views1 page

Software Engineering Tutorial: Manning & Metrics

This document contains questions for a software engineering tutorial related to peak manning calculations, flow graph drawing and complexity analysis, and software metrics. It asks the reader to: 1) Derive an expression for peak manning using the Nordes/Rayleigh equation. 2) Draw the flow graph and determine the cyclomatic complexity and independent paths of a sample if/else program. 3) Calculate peak manning for a project requiring 200 person-years over 2 years.

Uploaded by

Ceh
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views1 page

Software Engineering Tutorial: Manning & Metrics

This document contains questions for a software engineering tutorial related to peak manning calculations, flow graph drawing and complexity analysis, and software metrics. It asks the reader to: 1) Derive an expression for peak manning using the Nordes/Rayleigh equation. 2) Draw the flow graph and determine the cyclomatic complexity and independent paths of a sample if/else program. 3) Calculate peak manning for a project requiring 200 person-years over 2 years.

Uploaded by

Ceh
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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