Questions

Q:

Which parts of the heart receive blood from the lungs?

A) Right ventricle B) Left Atrium
C) Left Ventricle D) Right ATrium
 
Answer & Explanation Answer: B) Left Atrium

Explanation:

The left atrium is the upper left chamber of the heart that receives blood from the pulmonary veins.

 

which_parts_of_the_heart_receive_blood_from_the_lungs1561113684.jpg image

 

The heart is responsible for circulating blood throughout the body. The heart is divided into four chambers. The upper chamber is known as the atrium while the lower chamber is referred to as the ventricle.

Report Error

View Answer Report Error Discuss

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

5 2901
Q:

A lion eating a zebra is an example of

A) predation B) a keystone species
C) herbivory D) habitat destruction
 
Answer & Explanation Answer: A) predation

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

12 2900
Q:

Iveco, Part of the Fiat group, holds 15 per cent stake in an Indian automobile company. The  company in the question is 

A) AShok Leyland B) Hindustan Motors
C) Tata Motors D) Eitcher
 
Answer & Explanation Answer: A) AShok Leyland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

7 2899
Q:

ACTH stimulates the adrenal cortex to release corticosteroid hormones.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

ACTH means Adrenal Corticotrophic Hormone.


CRH - Corticotrophin Releasing Hormone produced by hypothalamus stimulates the pituitary gland to release the ACTH which in turn produces corticosteroid hormones by adrenal glands.


 


Hence, the given statement is TRUE.

Report Error

View Answer Workspace Report Error Discuss

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

1 2899
Q:

In the diagram, M is the midpoint of YZ, angle XMZ = 32°, and angle XYZ = 16°. The measure of angle XZY is:

A) 68° B) 84°
C) 78° D) 74°
 
Answer & Explanation Answer: D) 74°

Explanation:
Report Error

View Answer Report Error Discuss

3 2898
Q:

In the below puzzle, a word starts and ends with the same letter. Can you figure out what the word is?

_otato_

Answer

rotator

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

18 2898
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2897
Q:

The first female to take over the controls of a NASA spaceship is

A) Wilkie Collins B) Eileen Collins
C) Colette D) Kim Clijsters
 
Answer & Explanation Answer: B) Eileen Collins

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

0 2897