Questions

Q:

In the given question, a statement divided into different segments is given. The first segment is fixed, rearrange the other segments to form a coherent statement.

Introduction of the finance bill was delayed/ budget allocation for the cottage (P)/ debating over the renewal of the last year's (Q)/ by a week as the lawmakers were busy (R)/ industry which got wasted (S)

A) PQRS B) SPQR
C) RQPS D) QRPS
 
Answer & Explanation Answer: C) RQPS

Explanation:

This question can be best solved by the elimination technique. 'was delayed budget allocation', 'was delayed industry which' and 'was delayed debating over' do not make sense; hence P, Q and S can't follow the first segment. This eliminates options 1, 2 and 4. Option 5 places S after R which makes the resultant segment as 'lawmakers were busy industry' which is illogical; hence option 5 can also be eliminated. Hence, the correct sequence is RQPS.

Report Error

View Answer Report Error Discuss

Filed Under: English

0 2403
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

It's nothing short of a revolution in how we eat, and it's getting closer every day. Yes, a lot of people are obese, and yes, the definition of "healthy eating" seems to change all the time. But in labs and research centres around the world, scientists are racing to match our genes and our taste buds, creating the perfect diet for each of us, a diet that will fight disease, increase longevity, boost physical and mental performance, and taste great to boot. As food scientist J.Bruce German says, "The foods we like the most will be the most healthy for us."

Is that going to be a great day, or what?

All this will come to pass, thanks to genomics, the science that maps and describes an individual's genetic code. In the future, personalized DNA chips will allow us to assess our own inherited predispositions for certain diseases, then adjust our diets accordingly. So, if you're at risk for heart disease, you won't just go on a generic low-fat diet. You'll eat foods with just the right amount and type of fat that's best for you. You'll even be able to track your metabolism day-to-day to determine what foods you should eat at any given time, for any given activity. "Since people differ in their genetics and metabolism, one diet won't fit all," says German. As complex as all this sounds, it could turn out to be relatively simple.

What is genomics?

A) The science which describes about maps B) The science which describes an individual
C) The science which deals with years D) The science that maps and describes an individual's genetic code
 
Answer & Explanation Answer: D) The science that maps and describes an individual's genetic code

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2403
Q:

Write a c program for merge sort.

Answer

#include
#define MAX 50

void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);

int main(){
  
    int merge[MAX],i,n;

    printf("Enter the total number of elements: ");
    scanf("%d",&n);

    printf("Enter the elements which to be sort: ");
    for(i=0;i<n;i++){
         scanf("%d",&merge[i]);
    }

    partition(merge,0,n-1);

    printf("After merge sorting elements are: ");
    for(i=0;i<n;i++){
         printf("%d ",merge[i]);
    }

   return 0;
}

void partition(int arr[],int low,int high){

    int mid;

    if(low<high){
         mid=(low+high)/2;
         partition(arr,low,mid);
         partition(arr,mid+1,high);
         mergeSort(arr,low,mid,high);
    }
}

void mergeSort(int arr[],int low,int mid,int high){

    int i,m,k,l,temp[MAX];

    l=low;
    i=low;
    m=mid+1;

    while((l<=mid)&&(m<=high)){

         if(arr[l]<=arr[m]){
             temp[i]=arr[l];
             l++;
         }
         else{
             temp[i]=arr[m];
             m++;
         }
         i++;
    }

    if(l>mid){
         for(k=m;k<=high;k++){
             temp[i]=arr[k];
             i++;
         }
    }
    else{
         for(k=l;k<=mid;k++){
             temp[i]=arr[k];
             i++;
         }
    }
  
    for(k=low;k<=high;k++){
         arr[k]=temp[k];
    }
}


Sample output:

Enter the total number of elements: 5
Enter the elements which to be sort: 2 5 0 9 1
After merge sorting elements are: 0 1 2 5 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2403
Q:

In what organelle does cellular respiration take place?

A) Cytoplasm B) Ribosomes
C) Mitochondria D) None of the above
 
Answer & Explanation Answer: C) Mitochondria

Explanation:

Cellular respiration is the multi-step process that creates energy from nutrients and food molecules. It begins in the cytoplasm of the cell, with the mitochondria functioning as the main organelle where the rest of the process continues and finishes.

During respiration, glycolysis occurs in the cytoplasm of the cell.

Report Error

View Answer Report Error Discuss

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

3 2402
Q:

Chhatrapati Shivaji Maharaj International Airport is located in?

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

Explanation:

Chhatrapati Shivaji Maharaj International Airport is located in Mumbai.

Report Error

View Answer Report Error Discuss

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

2 2402
Q:

Which country is now the 2nd largest consumer and importer of the LPG in the world?

A) USA B) Japan
C) China D) India
 
Answer & Explanation Answer: D) India

Explanation:

The 2nd largest consumer and importer of the LPG in the worldis India.

Report Error

View Answer Report Error Discuss

0 2402
Q:

Which determines the frequency of a sound wave?

A) Amplitude B) Speed
C) Source D) Medium
 
Answer & Explanation Answer: A) Amplitude

Explanation:

The frequency of a sound wave is determined by the amplitude of the wave. As amplitude of the wave is high the frequency of the wave will also be high.

Report Error

View Answer Report Error Discuss

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

2 2401
Q:

What help ensure that the XIV Systems cache does not become a bottleneck?

A) central cache locking mechanism B) use of industry standard chip technology
C) each module is responsible for caching the data in that module D) having all modules understand what is held cache at all times
 
Answer & Explanation Answer: C) each module is responsible for caching the data in that module

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2401