Questions

Q:

Which of the following are involved directly in pulmonary circulation?

A) left ventricle, aorta, and inferior vena cava B) right atrium, aorta, and left ventricle
C) superior vena cava, right atrium, and left ventricle D) right ventricle, pulmonary artery, and left atrium
 
Answer & Explanation Answer: D) right ventricle, pulmonary artery, and left atrium

Explanation:

Right ventricle (which pumps blood to the lungs), pulmonary artery (which carries blood to the lungs), and left atrium (which receives blood from the lungs) are involved directly in pulmonary circulation.

Report Error

View Answer Report Error Discuss

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

3 2660
Q:

Cells with similar markers stick together and function as

A) Organs B) Tissues
C) Systems D) Organisms
 
Answer & Explanation Answer: B) Tissues

Explanation:

A tissue is an ensemble of similar cells and their extracellular matrix from the same origin that together carry out a specific function.

 

Hence, Cells with similar markers stick together and function as tissues.

Report Error

View Answer Report Error Discuss

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

2 2660
Q:

Why is burning coal a major source of pollution?

Answer

Coal is chemically complex fuel. Whenever it is burned, gases are given off and particles of ash, called "fly ash," are released. Release of sulfur from burning into the air. The sulfur in coal combines with oxygen to form sulfur dioxide, which can be a major source of air pollution if emitted in large enough quantities. This stuff comes back as acid rain when it attaches itself to a raindrop. 


 


Today, many of the effects of coal burning have been reduced significantly or eliminated. This is super-nasty and is only stopped by buying low-sulfur coal from Montana or Wyoming. The eastern power plants have to pay to move the coal from out west and this increases the price of power production.

Report Error

View answer Workspace Report Error Discuss

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

1 2660
Q:

At the center of the sun, fusion converts hydrogen into

A) Helium B) Plutonium
C) Water D) Carbon
 
Answer & Explanation Answer: A) Helium

Explanation:

At the center of the sun, nuclear fusion converts hydrogen into helium, energy, and neutrinos. Nuclear fusion is a reaction in which two or more atomic nuclei are combined to form one or more different atomic nuclei and subatomic particles (neutrons or protons).

At_the_center_of_the_sun,_fusion_converts_hydrogen_into1558676073.jpg image

Report Error

View Answer Report Error Discuss

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

1 2659
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

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

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2659
Q:

The inherited traits of an organism are controlled by

A) DNA B) Enzymes
C) Nucleotides D) RNA
 
Answer & Explanation Answer: A) DNA

Explanation:

The inherited traits of an organism are controlled by DNA molecules.

 

The traits an organism displays are ultimately determined by the genes it inherited from its parents, in other words by its genotype. Animals have two copies of all their chromosomes, one from each parent.

 

Report Error

View Answer Report Error Discuss

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

3 2659
Q:

Manas sanctuary in assam known for

A) Tigers B) Birds
C) Bears D) Elephants
 
Answer & Explanation Answer: D) Elephants

Explanation:

Manas_sanctuary_in_assam_known_for1552911929.jpg image

 

Manas National Park or Manas Wildlife Sanctuary is a national park, UNESCO Natural World Heritage site in Assam is known for Elephants. It is located in the Himalayan foothills.

Report Error

View Answer Report Error Discuss

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

4 2658
Q:

Which is first city in the world to get its own Microsoft font in 2017 ?

A) India B) Iran
C) Dubai D) Iraq
 
Answer & Explanation Answer: C) Dubai

Explanation:

Dubai has become the first city in the world to get its own Microsoft font.

ii. Sheikh Hamdan bin Mohammed bin Rashid Al Maktoum, Dubai's Crown Prince and Chairman of the Executive Council, launched the Dubai Font recently.

iii. The font, available in three styles as 'Dubai', 'Dubai Medium' and 'Dubai Light', can be in italics, underlined and bold.

Report Error

View Answer Report Error Discuss

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

2 2658