Answer:
Optimistic duration
Explanation:
The following three concepts are Project management concepts:
Optismitic duration: Estimation of the shortest duration of a task, taking into account the difficulty, etc.
Pessimistic duration: Estamation of the longest duration of a task, taking into account the difficulty, etc
Expected duration: Expected duration of a task, kind of a compromise between the optmistic duration and the pessimistic duration.
Which of the following is the estimate of the minimum amount of time it would take to perform a task?
The answer is Optimistic duration
Answer:
All except saving time writing a computer program.
If you are on the admin account, you will already have them, but if you are on a different account, it's pretty impossible But you can get through by using command prompt.
the following C++ function will return true if the given non - negative number is multiple of 5 or 3 else it will return false.
bool function( int x ){
// variable to check if it is multiple of both or not
int number =0;
if(3%x == 0){
number++;
}
if(5%x == 0){
number++;
}
// Now returning by deciding
if( number <=1)
return true;
else
return false
}