40 MCQs
2 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.
2 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.
0 comments
Post a Comment