Questions

Q:

An implied power is one that

Answer

Implied powers are powers of U.S. government which have not been explicitly granted by the Constitution but that is implied by the necessary and proper clause to be delegated for the purpose of carrying out the enumerated powers.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

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

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

Who appointed as new president of the Film & TV Institute of India (FTII) Society?

A) Brijendra Pal Singh B) Manohar Raje
C) Naini Singh D) None of the above
 
Answer & Explanation Answer: A) Brijendra Pal Singh

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 2331
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:

On 26thNovember, 1949, which of the following provisions of the Constitution of India came into effect?

1.Citizenship

2.Elections

3.Provisional Parliament

4.Fundamental Rights

 

Select the correct answer using the code given below.

A) 2, 3 and 4 B) 1, 2 and 3
C) 1 and 3 only D) 1 and 2 only
 
Answer & Explanation Answer: B) 1, 2 and 3

Explanation:

Some provisions of the Constitution pertaining to citizenship, elections, provisional parliament, temporary and transitional provisions, and short title contained in Articles 5, 6, 7, 8, 9, 60, 324, 366, 367, 379, 380, 388, 391, 392 and 393 came into force on November 26, 1949 itself

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2331
Q:

The place where the river meets the sea is called

A) Delta B) Sediment
C) Tributary D) Estuary
 
Answer & Explanation Answer: D) Estuary

Explanation:

The place where the river meets the sea or ocean is called as Estuary.

Report Error

View Answer Report Error Discuss

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

5 2331