Questions

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

The decentralization system was recommended by

A) C. Rajgopalachari B) Balwant Rai Mehta
C) J. B. Kriplani D) Ashok Mehta
 
Answer & Explanation Answer: B) Balwant Rai Mehta

Explanation:

The decentralization system was recommended by Balwant Rai Mehta.

Report Error

View Answer Report Error Discuss

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

3 2329
Q:

The Kargil War was between India and Pakistan took place in

A) 2001 B) 1983
C) 1999 D) 1989
 
Answer & Explanation Answer: C) 1999

Explanation:

The KargilWar was between India and Pakistan took place between May and July in 1999.

Report Error

View Answer Report Error Discuss

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

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

What element behaves most like magnesium?

A) Sr B) S
C) Si D) Sn
 
Answer & Explanation Answer: A) Sr

Explanation:

We know that, elements in the same group of the periodic table have similar characteristics. Here magnesium and strontium are the same 2nd group elements and have same behavior. 

Therefore, strontium behaves same as magnesium. 

Report Error

View Answer Report Error Discuss

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

5 2328
Q:

Where is the genetic information of the cell stored?

A) DNA B) Cell membrane
C) Nucleus D) None of the above
 
Answer & Explanation Answer: C) Nucleus

Explanation:

The genetic information of the cell is DNA and is stored in the nucleus of the cell.

Report Error

View Answer Report Error Discuss

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

2 2327
Q:

A large underground economy results in an

A) Understated GDP price index B) Understated GDP
C) Overstated GDP D) Overstated GDP price index
 
Answer & Explanation Answer: C) Overstated GDP

Explanation:

A large underground economy results in an Overstated GDP. The underground economy is also called as Black market. It refers to illegal economic activity. Transactions in the underground economy are illegal either because the good or service being traded is illegal or because an otherwise licit transaction does not comply with government reporting requirements.

Report Error

View Answer Report Error Discuss

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

2 2327
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