Questions

Q:

Project Time Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Activity Duration Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Activity list

  • Activity attributes

  • Activity resource requirements

  • Resource calendars

  • Project management plan


               - Risk register


               - Activity cost estimates


II. Tools and Techniques



  • Expert judgment

  • Analogous  estimating

  • Parametric estimating

  • Three-point estimates 

  • Reserve analysis


III. Outputs



  • Activity duration estimates

  • Activity attributes (updates)

Report Error

View answer Workspace Report Error Discuss

0 2284
Q:

Heat energy is transferred by conduction whenever molecules

A) collide each other B) means of photons
C) particles replaces there places D) All of the above
 
Answer & Explanation Answer: A) collide each other

Explanation:

Heat energy can be transferred by three major methods. They are 

 

1. Conduction,

2. Convection and

3. Radiation.

 

Conduction is the movement of heat through a substance by the collision of molecules

Convection occurs when particles with a lot of heat energy in a liquid or gas move and take the place of particles with less heat energy.

Radiation is the transfer of energy by means of photons in electromagnetic waves governed by the same laws. It occurs through a vacuum or any transparent medium.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2283
Q:

From where do most producers get energy?

A) plants B) sun
C) water D) All of the above
 
Answer & Explanation Answer: B) sun

Explanation:

Most producers use sun light for making their energy in the process of photosynthesis. The energy they prepared is sugar and glucose. 

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

3 2282
Q:

You cannot link excel worksheet data to a word document

A) With a hyperlink B) With the copy and paste buttons on the standard toolbar
C) With the right drag method D) With the copy and paste special commands
 
Answer & Explanation Answer: B) With the copy and paste buttons on the standard toolbar

Explanation:

You cannot link excel worksheet data to a word document With the copy and paste buttons on the standard toolbar.

Report Error

View Answer Report Error Discuss

2 2282
Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2282
Q:

The headquaters of food and agriculture organisation is in

A) Paris B) Rome
C) Madrid D) Washington
 
Answer & Explanation Answer: B) Rome

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2282
Q:

If you are using C language to implement the heterogeneous linked list, what pointer type will you use?

Answer

The heterogeneous linked list contains different data types in its nodes and we need a link, pointer to connect them. It is not possible to use ordinary pointers for this. So we go for void pointer. Void pointer is capable of storing pointer to any type as it is a generic pointer type.

Report Error

View answer Workspace Report Error Discuss

Subject: Database Exam Prep: GATE
Job Role: Database Administration

0 2281
Q:

Improve the bracketed part of the sentence.
The student of human history can draw on many more natural experiments (than) just comparisons among the five inhabited continents.

A) to B) of
C) for D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2281