Questions

Q:

Project Management - Introduction

What is a Project? What are its Characteristics?

Answer

A Project is a temporary endeavour undertaken to create a unique product, service or result.


Characteristics:


1.Temporary 


    Temporary means that every project has a definite beginning and a definite end.


2. Unique Products, Services or Results


   Uniqueness is an important characteristic of project deliverables. For example, many thousands of office buildings have been developed, but each individual facility is unique - different owner, different design, different location, different contractors, and so on.


3. Progressive Elaboration


   Progressive elaboration means developing in steps, and continuing by increments . For example, the project scope will be broadly described early in the project and made more explicit and detailed as the project team develops a better and more complete understanding of the objectives and deliverables.

Report Error

View answer Workspace Report Error Discuss

0 2224
Q:

Which statement best describes the electronegativity of an element?

A) Electronegativity of an atom is it's ability to produce energy while losing an electron. B) Electronegativity of an atom is it's ability to attract electrons during bond formation.
C) Electronegativity of an atom is it's ability to lose electrons during cation formation. D) Electronegativity of an atom is it's ability to share electrons during a covalent bond formation.
 
Answer & Explanation Answer: B) Electronegativity of an atom is it's ability to attract electrons during bond formation.

Explanation:

Electronegativity, is a chemical property that describes the tendency of an atom to attract a shared pair of electrons (or electron density) towards itself.

Report Error

View Answer Report Error Discuss

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

1 2224
Q:

In plants, chloroplasts are necessary for 

A) photosynthesis B) storage
C) cell movement D) respiration
 
Answer & Explanation Answer: A) photosynthesis

Explanation:

Plants are producers, which means they make their own food. Chloroplasts are organelles found in eukaryotic and plant cells that conduct photosynthesis. Chloroplasts absorb sunlight and use it in conjunction with water and carbon dioxide gas to produce food for the plant.

Plants use energy from sunlight to help make their food, but they need chloroplasts to do it.

 

Hence, in plants, chloroplasts are necessary for Photosynthesis.

Report Error

View Answer Report Error Discuss

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

1 2224
Q:

Gluconeogenesis is a term that describes the synthesis of

Answer

Gluconeogenesis is a metabolic pathway that leads to the synthesis of glucose from pyruvate and other non-carbohydrate precursors, even in non-photosynthetic organisms.


 


It occurs in all microorganisms, fungi, plants and animals, and the reactions are essentially the same, leading to the synthesis of one glucose molecule from two pyruvate molecules. Therefore, it is in essence glycolysis in reverse, which instead goes from glucose to pyruvate, and shares seven enzymes with it.

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

0 2223
Q:

Which is the largest coal producing country in the World?

A) India B) China
C) Russia D) New-zealand
 
Answer & Explanation Answer: B) China

Explanation:

China has been by far the biggest coal producing country over the last three decades. The country produced about 3.6 billion tonnes (Bt) of coal in 2012 accounting for over 47% of the world's total coal output.

Report Error

View Answer Report Error Discuss

6 2223
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Close project Phase?

Answer

I. Inputs



  • Project management plan

  • Contract documentation

  • Enterprise environmental factors

  • Organizational process assets

  • Work performance information

  • Deliverables


II. Tools and Techniques



  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs



  • Administrative closure procedure

  • Contract closure procedure

  • Final product, service, or result

  • Organisational process assets (updates)

Report Error

View answer Workspace Report Error Discuss

0 2221
Q:

Write a c program for merge sort.

Answer

#include
#define MAX 50

void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);

int main(){
  
    int merge[MAX],i,n;

    printf("Enter the total number of elements: ");
    scanf("%d",&n);

    printf("Enter the elements which to be sort: ");
    for(i=0;i<n;i++){
         scanf("%d",&merge[i]);
    }

    partition(merge,0,n-1);

    printf("After merge sorting elements are: ");
    for(i=0;i<n;i++){
         printf("%d ",merge[i]);
    }

   return 0;
}

void partition(int arr[],int low,int high){

    int mid;

    if(low<high){
         mid=(low+high)/2;
         partition(arr,low,mid);
         partition(arr,mid+1,high);
         mergeSort(arr,low,mid,high);
    }
}

void mergeSort(int arr[],int low,int mid,int high){

    int i,m,k,l,temp[MAX];

    l=low;
    i=low;
    m=mid+1;

    while((l<=mid)&&(m<=high)){

         if(arr[l]<=arr[m]){
             temp[i]=arr[l];
             l++;
         }
         else{
             temp[i]=arr[m];
             m++;
         }
         i++;
    }

    if(l>mid){
         for(k=m;k<=high;k++){
             temp[i]=arr[k];
             i++;
         }
    }
    else{
         for(k=l;k<=mid;k++){
             temp[i]=arr[k];
             i++;
         }
    }
  
    for(k=low;k<=high;k++){
         arr[k]=temp[k];
    }
}


Sample output:

Enter the total number of elements: 5
Enter the elements which to be sort: 2 5 0 9 1
After merge sorting elements are: 0 1 2 5 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2220
Q:

GDP tends to overstate economic well-being because it takes into account

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Economy Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2220