Questions

Q:

Bleeding of gums, falling of teeth, fragile bones and delayed wound healing occur due to the deficiency of which one of the following vitamins?

A) Vitamin C B) Vitamin K
C) Vitamin D D) Vitamin B
 
Answer & Explanation Answer: A) Vitamin C

Explanation:

Deficiency of Vitamin C causes Scurvy, Swelling of gums etc.Vitamin K causes Non-clotting of blood ,Vitamin D causes Rickets in children and Osteomalasia in adults, Vitamin B 1 causes Beriberi,B2 causes Cracking of skin,reddish eye,cracking of tongue,B3 causes Whitening of hair ,mentally retardness ,B5 causes Pallagra or 4D syndrome,B6 causes Anemia,skin disease ,B7 causes Paralysis,hair falling,B11 causes Dysentery and B12 causes Jaundice and Teroile Glutemi

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 2325
Q:

Improve the bracketed part of the sentence.
He jumped off the train while it (had been running).

A) has been running B) ran
C) was running D) No improvement
 
Answer & Explanation Answer: C) was running

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2324
Q:

Teens who drink are at risk of

A) HIV and other STDs B) becoming an alcoholic
C) date rape D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

teens_drinking_are_at_risk_of1539257520.jpg image

Teens drinking are at risk of date rape, becoming an alcoholic, HIV and other STDs.

Report Error

View Answer Report Error Discuss

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

1 2324
Q:

The purpose of the constitution is presented in the

A) Amendments B) Preamble
C) Bill of Rights D) Articles
 
Answer & Explanation Answer: B) Preamble

Explanation:

The Preamble proclaims the solemn resolution of the people of India to constitute India into a 'Sovereign socialist secular democratic republic'.

Report Error

View Answer Report Error Discuss

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

3 2324
Q:

Which one of the following is not correct about Sargasso Sea?

A) It is characterized with anticyclonic circulation of ocean currents B) It records the highest salinity in Atlantic Ocean
C) It is located west ofGulf Stream and east of Canary Current D) It confined in gyre of calm and motionless water
 
Answer & Explanation Answer: A) It is characterized with anticyclonic circulation of ocean currents

Explanation:

The calm centre of the anticyclonic gyre in the North Atlantic, comprising a large eddy of surface water, the boundaries of which are demarcated by major current systems such as the Gulf Stream, Canaries Current, and North Atlantic Drift. The Sargasso Sea is a large, warm (18°C), saline, which is characterized by an abundance of floating brown seaweed (Sargassum).

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

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

The bankruptcy of which company initiated the Panic of 1873?

A) Republic Steel Company B) Jay Cooke & Company
C) Standard Oil Company D) Century Building Society
 
Answer & Explanation Answer: B) Jay Cooke & Company

Explanation:

Jay Cooke & Company, a major component of the United States banking establishment, found itself unable to market several million dollars in Northern Pacific Railway bonds in september 1873. Cooke's firm, like many others, had invested heavily in the railroads.

 

Hence, the bankruptcy of Jay Cooke & company initiated the Panic of 1873.

Report Error

View Answer Report Error Discuss

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

0 2324
Q:

Amazon Rainforest Forests are located in which continent?

A) South America B) Australia
C) North America D) Antarctica
 
Answer & Explanation Answer: A) South America

Explanation:

Amazon Rainforest Forests are located in South America.

Report Error

View Answer Report Error Discuss

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

7 2324