Questions

Q:

The process of bones increasing in width is known as

A) appositional growth B) concentric growth
C) closing of the epiphyseal plate D) long bones reaching adult length and width
 
Answer & Explanation Answer: A) appositional growth

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2339
Q:

A perfectly inelastic demand curve

A) Vertical with some steep B) Perfectly horizontal
C) Horizontal with some steep D) Perfectly vertical
 
Answer & Explanation Answer: D) Perfectly vertical

Explanation:

A perfectly inelastic demand curve is perfectly vertical either up or down in any way.

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

What is the unit of the physical quantity "Stress"?

A) newton second B) steradian
C) pascal D) joule
 
Answer & Explanation Answer: C) pascal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams , CAT

1 2338
Q:

Gestalt psychology attempted to discover

A) the overall patterns of perceptions and thoughts B) the unconscious motivations for human functioning
C) how the mind helped people adapt to the world D) the basic building blocks of consciousness
 
Answer & Explanation Answer: A) the overall patterns of perceptions and thoughts

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2338
Q:

Condition of decreased oxygen in the blood

A) Hematemesis B) Hypercapnia
C) Hemoptysis D) Hypoxemia
 
Answer & Explanation Answer: D) Hypoxemia

Explanation:

Oxygen deficiency or decreased oxygen levels in the blood is a condition known as Hypoxemia.

 

Hypercapnia means High carbon dioxide levels in the blood.

Report Error

View Answer Report Error Discuss

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

1 2337
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 2337
Q:

Who was Shivaji’s Guru?

A) Eknath B) Tukaram
C) Dnyanesh D) Samartha Ramadas
 
Answer & Explanation Answer: D) Samartha Ramadas

Explanation:

Shivaji’s Guru was Shree Samarth Ramdas was a noted 17th-century saint and spiritual poet of Maharashtra. He is most remembered for his Advaita Vedantist text, the Dasbodh. Ramdas was a devotee of Hanuman and Rama.

Report Error

View Answer Report Error Discuss

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

7 2337
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 2337