Questions

Q:

Project Procurement Management

What are the Project Management Processes included in the Project Procurement Management?

Answer

The Project Procurement Management processes include the following:


Plan Purchases and Acquisitions - determining what to purchase or acquire and determining when and how.


Plan Contracting - documenting products, services, and results requirements and identifying potential sellers.


Request Seller Responses - obtaining information, quotations, bids, offers, or proposals, as appropriate.


Select Sellers - reviewing offers, choosing among potential sellers, and negotiating a written contract with each seller.


Contract Administration - managing the contract and relationship between the buyer and seller , reviewing and documenting how a seller is performing or has performed to establish required corrective actions and provide a basis for future relationships with the seller, managing contract-related changes and, when appropriate , managing the contractual relationship with the outside  buyer of the project.


Contract Closure - completing and settling each contract, including the resolution of any open items, and closing each contract applicable to the project or a project phase 

Report Error

View answer Workspace Report Error Discuss

0 2274
Q:

The Limitation Law, which passed by the British in 1859, addressed which one of the following issues?

A) Loan bonds would not have any legal validity B) Loan bonds signed between money lender and Ryots would have validity only for three years
C) Loan bonds could not be executed by money lenders D) Loan bonds would have validity for ten years
 
Answer & Explanation Answer: B) Loan bonds signed between money lender and Ryots would have validity only for three years

Explanation:

The ryots came to see the moneylender as devious and deceitful. They complained of moneylenders manipulating laws and forging accounts. In 1859 the British passed a Limitation Law that stated that the loan bonds signed between moneylenders and ryots would have validity for only three years. This law was meant to check the accumulation of interest over time. The moneylender, however, turned the law around, forcing the ryot to sign a new bond every three years.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

0 2274
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 2274
Q:

The pH of pure water is nearly 7.It will increase on the addition of

A) ammonia B) cane sugar
C) common salt D) hydrochloric acid
 
Answer & Explanation Answer: A) ammonia

Explanation:

Ammonia is a base. One adding ammonia to water,the resulting solution will become basic. pH of an alkaline solution is 7. So the pH will increase

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2274
Q:

If the production possibilities curve was a straight line, this would imply that

A) Economic resources are perfectly substitutable, in the production of the two products B) Equal quantities of both products are produced at each possible point on the curve
C) The two products will sell at the same market price D) The two products are equally important to consumers
 
Answer & Explanation Answer: C) The two products will sell at the same market price

Explanation:

A production–possibility frontier (PPF) or production possibility curve (PPC) is the possible tradeoff of producing combinations of goods with constant technology and resources per unit time.

Report Error

View Answer Report Error Discuss

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

1 2273
Q:

What is a deep valley between cliffs often carved from the landscape by a river?

Answer

Canyon

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2272
Q:

Tides in the sea are caused by 

A) Effect of Sun B) Effect of Moon
C) Combined effect of Moon and Sun D) Gravitational Force of Earth and Sun
 
Answer & Explanation Answer: C) Combined effect of Moon and Sun

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2271
Q:

Where is the headquaters of the Universal postal Union

A) Switzerland B) UK
C) Iran D) India
 
Answer & Explanation Answer: A) Switzerland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2271