Questions

Q:

Land of Thunderbolt is the nickname of which Asian country?

A) Nepal B) Bhutan
C) Myanmar D) Bolivia
 
Answer & Explanation Answer: B) Bhutan

Explanation:
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 2306
Q:

Pen name of Charles Dickens?

A) Boz B) Ba Jin
C) BB D) Cassandra
 
Answer & Explanation Answer: A) Boz

Explanation:

Charles Dickens pen name is Boz. Charles John Huffam Dickens was a British English writer and social critic of 19th century. He created some of the world's best-known fictional characters and is regarded by many as the greatest novelist of the Victorian era.

Report Error

View Answer Report Error Discuss

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

0 2306
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 2305
Q:

Which aricle of the UN charterr established the International Trusteeship system

A) 78 B) 79
C) 75 D) 74
 
Answer & Explanation Answer: C) 75

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2305
Q:

A computer port is used to

A) Donwload files B) Communicate with other computer peripherals
C) Communicate with hard disks D) All of the above
 
Answer & Explanation Answer: B) Communicate with other computer peripherals

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2305
Q:

The only perennial river in Peninsular India is _____ .

A) Godavari B) Kaveri
C) Krishna D) Bhima
 
Answer & Explanation Answer: B) Kaveri

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2305
Q:

Which of the following is a characteristic of the Ascomycota?

A) Sac formation B) Zygospore formation
C) Basidium formation D) All of the above
 
Answer & Explanation Answer: A) Sac formation

Explanation:

Ascomycota is a division or phylum of the kingdom Fungi that, together with the Basidiomycota, form the subkingdom Dikarya. Its members are commonly known as the sac fungi or ascomycetes. 

 

Hence, Sac formation is a characteristic of the Ascomycota fungi.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 2305
Q:

Most of the oxygen transported by the blood is

A) bound to hemoglobin B) dissolved in plasma
C) dissolved in water D) in ionic form as solute in plasma
 
Answer & Explanation Answer: A) bound to hemoglobin

Explanation:

Oxygen is transported throughout the body via hemoglobin in the red blood cells. Hence, most of the oxygen transported by the blood is bounded to hemoglobin.

Report Error

View Answer Report Error Discuss

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

4 2305