Questions

Q:

The main result of aerobic respiration is the

A) production of lactic acid as an end product B) production of ATP from the breakdown of glucose
C) conversion of radiant energy into chemical energy D) storage of energy in a polysaccharide
 
Answer & Explanation Answer: B) production of ATP from the breakdown of glucose

Explanation:

The three steps within the aerobic respiration process are glycolysis, the citric acid cycle, and oxidative phosphorylation.

Photosynthesis builds glucose, and what was built in photosynthesis is broken down during aerobic respiration.

 

Hence, production of ATP from the breakdown of glucose is the main result of aerobic respiration.

Report Error

View Answer Report Error Discuss

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

2 2701
Q:

Which country won the Cricket World cup in 2011

A) Sri Lanka B) Australia
C) Pakistan D) India
 
Answer & Explanation Answer: D) India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

2 2700
Q:

The greenhouse effect is caused by

A) Deforestation B) Burning of Fossil Fuels
C) Increase in Population D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The major greenhouse gases (GHG’s) solely responsible for greenhouse effect are Carbon dioxide, Ozone, Methane and Water vapor. Although these gases comprise 1% of our atmosphere, they act like a thick warm blanket outside that surrounds this planet and regulate climate control. Greenhouse effect is not bad. In fact, it is needed for all of us to survive on planet Earth. In short, the greenhouse effect is nothing but a naturally occurring process designed by nature that aids in heating earth’s surface and helps to maintain ecological balance.

Now, while some of that heat dissipates into space, some of it burns along the atmosphere, and some of it penetrates the atmosphere and finds its way into the lower atmosphere and the planet’s surface. This in turn raises the average temperature of the Earth. Therefore, the increase in the Earth’s surface temperature due to increase in the number of greenhouse gases leads to global warming.

 

Causes of Green House Effects ::

 

* Burning of Fossil Fuels

* Deforestation 

* Increase in Population

* Farming

* Industrial Waste and Landfills.

Report Error

View Answer Report Error Discuss

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

5 2700
Q:

Which memory needs refresh?

A) DRAM B) SRAM
C) ROM D) All of the above
 
Answer & Explanation Answer: A) DRAM

Explanation:

Memory refresh is the process of periodically reading information from an area of computer memory and immediately rewriting the read information to the same area without modification, for the purpose of preserving the information.

DRAM1532669979.png image

Memory refresh is a background maintenance process required during the operation of semiconductor dynamic random-access memory (DRAM), the most widely used type of computer memory.

Report Error

View Answer Report Error Discuss

2 2699
Q:

Which city ranks 40 among top 50 global cities for women entrepreneurs listing ?

A) Hyderabad B) Chennai
C) Delhi D) Bangalore
 
Answer & Explanation Answer: D) Bangalore

Explanation:
Report Error

View Answer Report Error Discuss

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

8 2699
Q:

The right ventricle transports oxygenated blood to the lungs.

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

Explanation:

The right ventricle transports deoxygenated blood to the lungs, where the oxygenation takes place.


Hence, the given statement is FALSE.

Report Error

View Answer Workspace Report Error Discuss

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

2 2699
Q:

If there is a lock on an adjacent key, an insert will fail if the isolation level is set to what?

A) committed read B) repeatable read
C) share read D) indexed read
 
Answer & Explanation Answer: B) repeatable read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2699
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 2698