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:

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:

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:

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
Q:

The preamble to our constitution provided that India is

A) a sovereign, socialist, secular and democratic republic B) a sovereign republic with a socialist pattern of society
C) a socialist, secular and democratic republic D) a sovereign, socialist and democratic republic
 
Answer & Explanation Answer: A) a sovereign, socialist, secular and democratic republic

Explanation:

The Preamble was adopted with the constitution in the constituent assembly.

 

The Preamble proclaims the solemn resolution of the people of India to constitute India into a 'Sovereign socialist secular democratic republic'.

Report Error

View Answer Report Error Discuss

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

2 2698