Questions

Q:

Gravitational force is maximum at which place

A) Poles B) Tropic of cancer
C) Tropic of capricorn D) Equator
 
Answer & Explanation Answer: A) Poles

Explanation:

Gravitational force is the force that binds everything at the surface of the earth. Gravitational force is maximum at Poles.

Report Error

View Answer Report Error Discuss

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

5 2514
Q:

Rise in sugar levels in blood is detected by the cells of:

A) Liver B) Gall bladder
C) Kidney D) Pancreas
 
Answer & Explanation Answer: D) Pancreas

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT

4 2514
Q:

Which country ropes in space technology to track border management?

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

Explanation:

India ropes in space technology to track border management.

Report Error

View Answer Report Error Discuss

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

0 2514
Q:

In the following question, out of the given four alternatives, select the one which is opposite in meaning of the given word.

Vagrant

A) Idle B) Roving
C) Settled D) Wanderer
 
Answer & Explanation Answer: C) Settled

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

A word i know, six letters it contains, subtract just one and twelve remains. What is it?

Answer

DOZENS.


If we remove 'S' from it, it is DOZEN which tells that 12.

Report Error

View answer Workspace Report Error Discuss

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

2 2514
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.


Modern civilization is completely dependent on energy, which has therefore to be abundant and also economical. About 85% of the world's energy is supplied by oil, coal and natural gas while nuclear, hydro, wind and solar power and biomass supply the rest. Coal, nuclear and hydro are used primarily to generate electricity while natural gas is widely used for heating. Biomass is used both for heating and cooking. The wind and solar power is the future's hope as they are sustainable energy sources. Oil powers almost all machines that move and that makes oil uniquely versatile. Oil powered airplanes carry 500 people across the widest oceans at nearly the speed of sound. Oil powered machines produce and transport food. Oil powered machines are ubiquitous. Clearly, we live in the age of oil but it is drawing to a close. According to data available if oil production remains constant until it's gone, there is enough to last 42 years. Oil wells will produce less as they become depleted, which will make it impossible to keep production constant. Similarly natural gas and coal will last another 61 years and 133 years respectively. Naturally, as they become scarce, they become expensive, leading to a worldwide energy crisis. If we are to survive on this planet, we have to make a transition to sustainable energy sources. The transition may be willy-nilly or planned - the choice is ours.

The dawning era of limited and expensive energy will be very difficult for everyone on earth but will be even more difficult if it is not anticipated. It is of utmost importance that the public and policymakers understand the global energy crisis and act in tandem to ensure that the species 'homo sapiens' does not become extinct.

The theme of the passage is

A) Changing Lives B) Looming Energy Crisis
C) Energy Resources D) Power in Today's world
 
Answer & Explanation Answer: B) Looming Energy Crisis

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2513
Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.

But this does not mean

X-phenomena to the body
Y-is a meaningless expression
Z-that the reference of mental

A) YZX B) ZXY
C) YXZ D) XZY
 
Answer & Explanation Answer: B) ZXY

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2513