CS605 Final Term Subjective Papers 2011

CS605_Software Engineering_Finalterm_Subjective_Paper


40 Mcqs
5 Questions of 2 Marks
5 Questions of 3 Marks
3 Questions of 5 Marks
========================
Two Factor of Revision. ( 2 )
How can calculate MTBF. ( 2 )
what is software refactoring. ( 2 )
List the factor involved in calculating the cost of reengineering. ( 3 marks )
The following code segment sorts an array of integers using “selection sort” algorithm. ( 3 marks )
for (i=0; i < N-1; i++) {
min = i;
for (j = i; j < N; j++)
if (a[j] < a[min]) min = j;
temp = a[i];
a[i] = a[min];
a[min] = temp;
what are the step of BPR. ( 5 marks )

Leave a Reply

Related Posts Plugin for WordPress, Blogger...