CS605 Current Spring 2011 Final Term VU Paper [July 2011] Virtual University of Pakistan
Saturday, July 23, 2011 Posted In .Final Term Exam Spring 2011 (July) Edit This2 Marks
Earned value analysis
Five software delivery problem
How much time frame we can use in Rapid Application Development (RAD)?
Differentiate between Check-in and Check-out processes.
3 Marks
How can we increment the task associated with time-box?
What should this model depict?
Give the code functionality of given code.
Class PriceÖ
double charge(int daysRented) { double result = 0;
switch (priceCode()) {
case Movie.REGULAR:
result += 2;
if (daysRented > 2)
result += (daysRented - 2) * 1.5;
break;
case Movie.NEW_RELEASE:
result += daysRented * 3;
break;
case Movie.CHILDRENS:
result += 1.5;
if (daysRented > 3)
result += (daysRented - 3) * 1.5;
break;
}
return result;
}
What basis Legacy system maintains or discards?
5 Marks
How can 80-20 rule apply while business process re-engineering?
Give suggestions to make Walkthrough to be effective.