Tuesday 7 February 2012

[discussion_vu] Current Paper of CS605 07-02-2012 Software Engineering ||

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 )


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

No comments:

Post a Comment