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

'Agronomy' is the practice of raising ______________

A) Plants and Animals B) Crop plants
C) Agriculture D) Fruit plants only
 
Answer & Explanation Answer: A) Plants and Animals

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

1 2331
Q:

"Words in the Garden" festival on Gandhian philosophy is scheduled to be held in which city?

A) Hyderabad B) Pune
C) Kolkata D) New Delhi
 
Answer & Explanation Answer: D) New Delhi

Explanation:
Report Error

View Answer Report Error Discuss

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

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

A solution that is hypotonic to a cell has

A) more water molecules surrounding the cell than inside the cell B) more water molecules inside the cell than outside the cell
C) equal water molecules inside and outside the cell D) None of the above
 
Answer & Explanation Answer: A) more water molecules surrounding the cell than inside the cell

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2330
Q:

Which is not a duty of a member of congress?

A) helping constituents B) educating the public
C) lawmaking D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

Members of Congress has five main functions:

 

1. lawmaking,

2. representing the people,

3. performing oversight,

4. helping constituents, and

5. educating the public.

Report Error

View Answer Report Error Discuss

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

1 2329
Q:

The reverse effect of X-ray emission is

A) Raman effect B) Compton effect
C) Zeeman effect D) Photo-electric effect
 
Answer & Explanation Answer: D) Photo-electric effect

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2328
Q:

Which equation represents a neutralization reaction?

A) 2Al(OH)3(s) ---> Al2O3(s) + 3H2O(l) B) H2SO4(aq) + 2NaOH(aq) ---> Na2SO4(aq) + 2H2O(l)
C) 2H2(g) + O2(g) ---> 2H2O(l) D) H2CO3(aq) ---> CO2(g) + H2O(l)
 
Answer & Explanation Answer: B) H2SO4(aq) + 2NaOH(aq) ---> Na2SO4(aq) + 2H2O(l)

Explanation:

Here in the option B) H2SO4 - Sulfuric acid is reacting with sodium hydroxide (NaOH), a base to produce a salt (Sodium Sulfate), and water (H2O). This is characteristic of of acid-base neutralization reactions.

Report Error

View Answer Report Error Discuss

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

1 2328