Questions

Q:

Siachen is a

A) frontier zone between India and Myanmar B) desert frontier zone between India and Pakistan
C) glacier frontier zone between India and Pakistan D) frontier zone between China and India
 
Answer & Explanation Answer: C) glacier frontier zone between India and Pakistan

Explanation:

Siachen is a glacier frontier zone between India and Pakistan.

Siachen_is_a1554289418.jpg image

Report Error

View Answer Report Error Discuss

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

4 2381
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:

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

Which cell feature is responsible for making proteins?

A) Chromosomes B) Nucleus
C) Ribosomes D) Cytoplasm
 
Answer & Explanation Answer: C) Ribosomes

Explanation:

Ribosomes comprise a complex macro molecular machine, found within all living cells, that serves as the site of biological protein synthesis. Ribosomes link amino acids together in the order specified by messenger RNA molecules.

 

which_cell_feature_is_responsible_for_making_proteins1558091245.jpg image

Report Error

View Answer Report Error Discuss

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

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

The best - paid player in the world playing with Barcelona team

Answer

Lionel Messi

Report Error

View answer Workspace Report Error Discuss

Subject: Sports

2 2380
Q:

What is the cause of most boating accidents?

what_is_the_cause_of_most_boating_accidents1538570800.jpg image

A) Machinery failure B) Alcohol use
C) Lack of proper look-out D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The main causes for the boat accidents are ::

1. Excessive speed

2. Machinery failure

3. Operator inexperience

4. Alcohol use

5. Operator inattention

6. Lack of proper look-out

7. Careless/reckless behavior and hull failure

8. Hazardous waters

and some more...

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

Find the current (in A) when a charge of 1200C flows in 6 seconds.

A) 7200 B) 200
C) 100 D) 3600
 
Answer & Explanation Answer: B) 200

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams , GATE
Job Role: Bank Clerk , Bank PO

0 2380