Questions

Q:

What is the currency of Japan?

A) yen B) dirham
C) yuan D) None of the above
 
Answer & Explanation Answer: A) yen

Explanation:

The currency of Japan is Japanese yen.

Report Error

View Answer Report Error Discuss

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

1 2344
Q:

Landowners often complain that hunters

A) do not get written permission to hunt B) make too much noise
C) leave litter behind D) All of the above
 
Answer & Explanation Answer: A) do not get written permission to hunt

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2344
Q:

What goes Up and Down without Moving ?

A) Balloon B) Temperature
C) Lift D) Rain
 
Answer & Explanation Answer: B) Temperature

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Word Puzzles
Exam Prep: Bank Exams

19 2343
Q:

What are sources of energy during exercise?

A) blood sugars B) muscle glycogen
C) intramuscular triacylglycerols D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The sources of energy during exercise are muscle glycogen, blood sugar, blood fatty acids and intramuscuar triacylglycerols.

running-573762_6401540290351.jpg image

Report Error

View Answer Report Error Discuss

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

3 2343
Q:

Who conquered Sind in 712 AD?

A) Arabs B) French
C) Greeks D) Mongols
 
Answer & Explanation Answer: A) Arabs

Explanation:

By 712 AD, Arabs conquered Sindh.

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

Suppose n is a positive integer such that (n2+ 48) is a perfect square. What is the number of such n?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: C) 3

Explanation:
Report Error

View Answer Report Error Discuss

1 2342
Q:

A yellow element that stinks when burned

A) Bromine B) Sulphur
C) Chlorine D) Fluorine
 
Answer & Explanation Answer: B) Sulphur

Explanation:

A yellow element that stinks when burned is Sulphur.

Report Error

View Answer Report Error Discuss

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

1 2342