Questions

Q:

Deficiency of which minerals causes goiter?

A) Magnesium B) Calcium
C) Iodine D) Sulphur
 
Answer & Explanation Answer: C) Iodine

Explanation:

Deficiency of Iodine cause Goiter also called Enlarged Thyroid. It doesn't give any pain but difficult to swallow and breath are its causes.

Report Error

View Answer Report Error Discuss

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

13 2381
Q:

The ratio of volume of a cone to that of a cylinder if cylinder radius is reduced by 4 times and its height increased by 8 times of that of the cone, is - 

A) 3:2 B) 2:3
C) 5:7 D) 7:5
 
Answer & Explanation Answer: B) 2:3

Explanation:

Ans. Let radius of the base and height of the cone be ‘r’ & ‘h’ respectively.

Then volume of cone = πr2h/3 For cylinder, radius is reduced by 4 times = r/4 And,  height is increased by 8 folds = 8h Volume of cylinder = πR2H = π(r/4)2 (8h) = (16/8)πr2h = πr2h/2 Ratio of volume of cone to volume of cylinder = (πr2h/3) : (πr2h/2) Or, Ratio = 2 : 3.

Report Error

View Answer Report Error Discuss

1 2381
Q:

In blanking operation clearance is provided on

A) Punch B) Either on punch or die depending upon designer's choice
C) Die D) Half on the punch and half on the die
 
Answer & Explanation Answer: A) Punch

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Hardware
Exam Prep: AIEEE

12 2381
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 2380
Q:

Improve the bracketed part of the sentence.
All the allegations levelled (over) the poor watchman were found to be baseless.

A) upon B) off
C) against D) no improvement
 
Answer & Explanation Answer: C) against

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2380
Q:

The Karma dance belongs to which state?

A) West Bengal B) Sikkim
C) Madhya Pradesh D) Uttar Pradesh
 
Answer & Explanation Answer: C) Madhya Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 2380
Q:

When a chemical bond is broken energy is

A) transferred B) released
C) used D) None of the above
 
Answer & Explanation Answer: C) used

Explanation:

Bond breaking is an endothermic process.

Hence, bond breakage needs an amount of energy and uses some energy based on the strength of the bond to break the bond.

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

Function of Bile juice?

Answer

Bile contains bile acids, which are critical for digestion and absorption of fats in the small intestine. Since bile increases the absorption of fats, it is an important part of the absorption of the fat-soluble substances, such as the vitamins A, D, E, and K. Besides its digestive function, many waste products, including bilirubin, a byproduct of red blood cells recycled by the liver are eliminated from the body by secretion into bile and elimination in feces.

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2379