Questions

Q:

The Buddh International Circuit is in

A) Gandhinagar B) Greater Noida
C) Guwahati D) New Delhi
 
Answer & Explanation Answer: B) Greater Noida

Explanation:

The Buddh International Circuit, an Indian motor racing circuit, is located in Greater Noida.

Report Error

View Answer Report Error Discuss

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

13 2295
Q:

Missing letters puzzle

Answer

Answer :  Y


Explanation:    Start on the left hand of the diagram, and move clockwise. Letters are written in alphabetical order, in steps of 10 letters at a time.

Report Error

View answer Workspace Report Error Discuss

4 2294
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 2294
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 2294
Q:

The system unit of a personal computer typically contains all except

A) Modem B) Serial interface
C) Microprocessor D) Disk controller
 
Answer & Explanation Answer: A) Modem

Explanation:

The system unit of a personal computer typically contains microprocessor, disk controller and serial interface but it does not contain modem.

Report Error

View Answer Report Error Discuss

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

4 2294
Q:

Who among the following was known during the days of the Revolt of 1857 as 'Danka Shah'?

A) Shah Mal B) Maulavi Ahmadullah Shah
C) Nana Sahib D) Tantia Tope
 
Answer & Explanation Answer: B) Maulavi Ahmadullah Shah

Explanation:

Ahmadullah Shah Madrasi alias Danka Shah (1789-1858), a descendant of the Qutub Shahi family of the Deccan, was in Faizabad when the sepoys mutinied in Meerut. He threw himself into the movement then and there. This was why he also came to be known as Ahmadullah Shah Faizabadi.

 

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2293
Q:

Which of the following statement(s) is/are CORRECT?

A) Oxides of non-metals are basic B) Oxides of non-metals are acidic
C) Oxides of metals are acidic D) All options are correct
 
Answer & Explanation Answer: B) Oxides of non-metals are acidic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2293
Q:

Which property would be classified as expendable?

A) Food given to Army B) Cement
C) Paint D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Expendable properties are those properties that are consume in use or that lose their identity in use. It also include those properties that become an integral part of other property when put to use and those properties which have an expected service life of less than one year.

 

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 2292