Questions

Q:

The hot holding temperature for potentially hazardous foods must be

A) not less than 60 deg B) less than 60 deg
C) less than 5 deg D) None of the above
 
Answer & Explanation Answer: A) not less than 60 deg

Explanation:

Potentially hazardous foods are foods that might contain food poisoning bacteria and are capable of supporting growth of these bacteria or formation of toxins to levels that are unsafe for consumers, if the foods are not stored at correct temperatures. Toxins are poisonous chemicals produced by some types of bacteria.


The food can be left at room temperature until it reaches 60 deg C because food-poisoning bacteria will not multiply at 60 deg C or above. However, do not leave food cooling at room temperature unless you are sure that the temperature of the food is still at least above 60 C.

Report Error

View Answer Report Error Discuss

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

3 2507
Q:

Which type of doctor specializes in teeth and jaw alignment?

A) Orthodontist B) Pediatrician
C) Psychiatrist D) Oncologist
 
Answer & Explanation Answer: A) Orthodontist

Explanation:

An orthodontist is the type of doctor that specializes in teeth and jaw alignment. When the teeth don't align properly, it can cause uneven wear in the teeth.

 

The jaw is a hinge joint. Strong muscles in the face open and close the jaw. Teeth are implanted in the jaw and serve to rip, tear and crush food in preparation for swallowing it.

Report Error

View Answer Report Error Discuss

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

2 2506
Q:

Which countries launched a common digital currency "Aber"?

A) UAE & Saudi Arabia B) Saudi Arabia & Iraq
C) Iraq & UAE D) Malaysia & UAE
 
Answer & Explanation Answer: A) UAE & Saudi Arabia

Explanation:

The United Arab Emirates (UAE) central bank (UAECB) and the Saudi Arabian Monetary Authority (SAMA) have announced that the interbank digital currency they are co-developing will be called 'Aber.'

Report Error

View Answer Report Error Discuss

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

2 2506
Q:

Liquid sodium is being considered as

A) engine coolant B) bleaching agent
C) antiseptic D) None of the above
 
Answer & Explanation Answer: A) engine coolant

Explanation:

Liquid sodium is being considered as engine coolant.

Report Error

View Answer Report Error Discuss

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

2 2506
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 2506
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 2505
Q:

How does molecular shape affect polarity?

Answer

Polarity :: 


The polarity of a molecule defines its other physical properties such as melting point, boiling point, surface tension, vapor pressure etc... Simply, polarity occurs when the electron distribution in a molecule is asymmetric. This results in a net dipole moment in the molecule. One end of the molecule is charged negative while the other gets a positive charge.


 


The polarization of a molecule greatly depends on the shape of the molecule. A diatomic molecule like HF mentioned above has no issue of shape. The net dipole moment is only due to the uneven distribution of electrons between the two atoms. However, when there are more than two atoms involved in making a bond, there are many complexities.


 


The water molecule is of bent shape. Therefore, when the two pair of electrons shared by oxygen with two hydrogen atoms is pulled towards oxygen, the net dipole moment results in the direction of the oxygen atom. There is no other force to cancel out the resultant dipole moment. Hence, the water molecule is highly polar.


 


Ammonia molecule is of a pyramid shape and the electronegative N atom pulls the electrons towards itself. The three N-H bonds are not in the same plane; hence the dipole moments created do not get canceled out. This makes ammonia a polar molecule.


 


However, the dipole moments sometimes get canceled due to the shape of the molecules, making the molecule non-polar. Carbon dioxide is such a molecule.

Report Error

View answer Workspace Report Error Discuss

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

4 2504
Q:

The first attempt in printing was made in England by

A) James Watt B) Isaac Newton
C) William Caxton D) James Arkwright
 
Answer & Explanation Answer: C) William Caxton

Explanation:

The first attempt in printing was made in England by William Caxton.

 

The_first_attempt_in_printing_was_made_in_England_by1552110131.jpg image

 

William Caxton was an English merchant, diplomat, and writer. He is thought to be the first person to introduce a printing press into England, in 1476, and as a printer was the first English retailer of printed books.

Report Error

View Answer Report Error Discuss

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

0 2504