Questions

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 express the same sentence in Indirect/Direct speech.

Vicky said, "I clean my teeth daily."

A) Vicky said he cleans his teeth daily. B) Vicky says he cleans his teeth daily.
C) Vicky said that he cleaned his teeth daily. D) Vicky said that he used to clean his teeth daily.
 
Answer & Explanation Answer: C) Vicky said that he cleaned his teeth daily.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2512
Q:

A sentence/a part of the sentence is underlined. Four alternatives are given to the underlined part which will improve the sentence. Choose the correct alternative and click the button corresponding to it. In case no improvement is needed, click the button corresponding to “No improvement”.

The greater the demand, higher the price.

A) the high B) a higher
C) the higher D) No improvement
 
Answer & Explanation Answer: C) the higher

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2512
Q:

Improve the bracketed part of the sentence.
(Hardly nothing) was offered to the victims of the earthquake.

A) Hardly something B) Hardly anything
C) Hardly little D) No improvement
 
Answer & Explanation Answer: B) Hardly anything

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2512
Q:

Different forms of genes are called

A) Genomes B) Allele
C) Genotypes D) None of the above
 
Answer & Explanation Answer: B) Allele

Explanation:
Report Error

View Answer Report Error Discuss

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

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

ISRO got approval for SSLV. It's stands for

A) Small Satellite Launch Vehicle B) Small Scale Limited Vehicles
C) Secondary Scaling Ltd Vehicles D) None of the above
 
Answer & Explanation Answer: A) Small Satellite Launch Vehicle

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

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

Lacto-ovo vegetarians would not eat

A) Fish and egg B) Egg, meat and milk products
C) Meat, poultry, milk products D) Meat, poultry, fish
 
Answer & Explanation Answer: D) Meat, poultry, fish

Explanation:

Lacto-ovo vegetarians who eat milk products and eggs but would not eat Meat, poultry, fish.

Report Error

View Answer Report Error Discuss

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

4 2511