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 2329
Q:

Clossing Process Group

What are the Project Management Processes included in Closing Process Group?

Answer


    • Close Project

    • Contract Closure



 

Report Error

View answer Workspace Report Error Discuss

0 2328
Q:

Write a program for matrix multiplication in c

Answer

#include <stdio.h>


int main() {


  int a[5][5], b[5][5], c[5][5], i, j, k, sum = 0, m, n, o, p;


  printf( "\nEnter the row and column of first matrix" );


  scanf( "%d %d", &m, &n );


  printf( "\nEnter the row and column of second matrix" );


  scanf( "%d %d", &o, &p );


  if(n!=o) {


      printf( "Matrix mutiplication is not possible" );


      printf( "\nColumn of first matrix must be same as row of second matrix" );


  }


  else {


      printf( "\nEnter the First matrix" );


      for( i=0; i<m; i++ )


      for( j=0; j<n; j++ )


           scanf( "%d", &a[i][j] );


      printf( "\nEnter the Second matrix" );


      for( i=0; i<o; i++ )


      for( j=0; j<p; j++ )


           scanf( "%d", &b[i][j] );


      printf( "\nThe First matrix is\n" );


      for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<n; j++ ) {


           printf( "%d\t", a[i][j] );


      }


      }


      printf( "\nThe Second matrix is\n" );


      for( i=0; i<o; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", b[i][j] );


      }       


      }


      for( i=0; i<m; i++ )


      for( j=0; j<p;j++ )


           c[i][j] = 0;


      for( i=0; i<m; i++ ) { //row of first matrix


      for( j=0; j<p; j++ )  {  //column of second matrix


           sum = 0;


           for( k=0; k<n; k++ )


               sum = sum + a[i][k]*b[k][j];


           c[i][j] = sum;


      }


      }


  }


  printf( "\nThe multiplication of two matrix is\n" );


  for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", c[i][j] );


      }


  }


  return 0;


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2328
Q:

In the following question, out of the given four alternatives, select the one which best expresses the meaning of the given word

Palliate

A) Accuse B) Relieve
C) Condemn D) Exacerbate
 
Answer & Explanation Answer: B) Relieve

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2328
Q:

The playback singer who is certified as the 'Most Recorded Artist' in the world (2009) by the World Records Academy is ________

Answer

Asha Bhosle . She  is the sister of Latha Mangeshkar

Report Error

View answer Workspace Report Error Discuss

0 2327
Q:

Which of these is true of all simple machines?

A) these make work easier B) work input > work output
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2327
Q:

The pressure of a fluid varies with depth h as P = PQ+pgh, where p is the fluid density. This expression is associated with

A) Pascal’s law B) Newton’s law
C) Bernoulli’s principle D) Archimedes’ principle
 
Answer & Explanation Answer: A) Pascal’s law

Explanation:

Pascal's law is a principle in fluid mechanics that states that a pressure change occurring anywhere in a confined incompressible fluid is transmitted throughout the fluid such that the same change occurs everywhere.

This principle is stated mathematically as: P= P + rgh

 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2327
Q:

One of the following was not associated with the Gadar party

A) Lala Hardayal B) Baba Gurdit Singh
C) Mohammad Barkatullah D) Sohan Singh Bhakna
 
Answer & Explanation Answer: B) Baba Gurdit Singh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

1 2326