Questions

Q:

Where are the taste receptors located?

A) epiglottis B) upper esophagus
C) tip of the tongue D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Five basic tastes are :

salty,

sweet,

bitter,

sour, and

umami.

Where_are_the_taste_receptors_located1551955329.jpg image

The taste receptors are located all over in the mouth around paillae structures.

Report Error

View Answer Report Error Discuss

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

3 2306
Q:

What is a deep valley between cliffs often carved from the landscape by a river?

Answer

Canyon

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

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

The study of volcanoes is called

A) Chemicology B) Lavology
C) Volcanology D) Magmalogy
 
Answer & Explanation Answer: C) Volcanology

Explanation:

The study of volcanoes, lava, magma, and related geological, geophysical and geochemical phenomenas is called Volcanology.

Report Error

View Answer Report Error Discuss

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

2 2304
Q:

Which of the following is an example of secondary succession?

A) sedimentation on the bottom of drained lake B) landscaping at a golf course
C) reforestation of the cedar forests of the northwest D) scrub grasses growing on a newly exposed dune
 
Answer & Explanation Answer: C) reforestation of the cedar forests of the northwest

Explanation:

Secondary succession means in an ecosystem renewal of itself after all or a portion has been destroyed.

 

After a forest fire, the whole forest had destroyed but after that again renewal of that forest is also an example of secondary succession.

Report Error

View Answer Report Error Discuss

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

0 2303
Q:

Which is the national game of pakistan ?

A) Cricket B) Kabaddi
C) Archery D) Hockey
 
Answer & Explanation Answer: D) Hockey

Explanation:

hockey

Report Error

View Answer Report Error Discuss

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

0 2303
Q:

Which measurement describes the pressure of a gas?

A) 450 mm Hg B) 315 K
C) 251 g/cub.cm D) None of the above
 
Answer & Explanation Answer: A) 450 mm Hg

Explanation:

450 mm Hg denotes the air pressure.

Report Error

View Answer Report Error Discuss

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

1 2302
Q:

Gamma rays are emanations that have

A) charge but no mass B) neither mass nor charge
C) both mass and charge D) mass but no charge
 
Answer & Explanation Answer: B) neither mass nor charge

Explanation:

A gamma ray or gamma radiation, is a penetrating electromagnetic radiation arising from the radioactive decay of atomic nuclei. It consists of the shortest wavelength electromagnetic waves and so imparts the highest photon energy.

Gamma rays are emanations that have neither mass nor charge.

Report Error

View Answer Report Error Discuss

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

4 2301