Questions

Q:

In the following question, out of the given four alternatives, select the alternative which best expresses the meaning of the Idiom/Phrase.

To bid defiance

A) To disregard recklessly B) To apologize
C) To act in a like manner D) To bribe
 
Answer & Explanation Answer: A) To disregard recklessly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

1 2407
Q:

Brown stains in vessels and clothes indicate the presence of high quantities of ________ in water

A) Magnesium B) Calcium
C) Manganese D) Chromium
 
Answer & Explanation Answer: C) Manganese

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2407
Q:

Which is required for karst topography to form?

A) Limestone B) Sinkholes
C) Both A & B D) Rain
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Karst topography is a landscape formed from the dissolution of soluble rocks such as limestone, dolomite, and gypsum.

Report Error

View Answer Report Error Discuss

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

5 2407
Q:

Which railway station became the first of South Central Railway zone to hoist a tricolour flag (100ft)?

A) Secunderabad B) Chennai
C) Bengaluru D) Panaji
 
Answer & Explanation Answer: A) Secunderabad

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Which Indian sportsperson honoured with "Meethoileima" title?

A) P.V. Sindhu B) Mary Kom
C) Saina Nehwal D) Sania Mirza
 
Answer & Explanation Answer: B) Mary Kom

Explanation:

Six-times World Women Boxing Champion and Olympic medalist, MC Mary Kom has been conferred with the title of "Meethoileima" by the government of Manipur.

Report Error

View Answer Report Error Discuss

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

0 2406
Q:

What was India's rank in the latest ICC One Day International Rankings?

A) 1st B) 2nd
C) 3rd D) 4th
 
Answer & Explanation Answer: B) 2nd

Explanation:

India's rank in the latest ICC One Day International Rankings is Second. England tops the list followed by India, South Africa, New Zealand, Pakistan, Australia in the list.

 

Whereas India's rank in the latest ICC Test International Rankings is First followed by South Africa and England in 2nd and 3rd places.

Report Error

View Answer Report Error Discuss

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

1 2406
Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Indirect/Direct speech.
Nasir asked his tutor, "Do I need to learn these formulas?"

A) Nasir asked his tutor if he has to learn those formulas. B) Nasir asked his tutor if he had to learn those formulas.
C) Nasir asked his tutor didn't he had to learn those formulas. D) Nasir asked his tutor hadn't he have to learn those formulas.
 
Answer & Explanation Answer: B) Nasir asked his tutor if he had to learn those formulas.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2406