Questions

Q:

Four words are given, out of which only one word is spelt correctly. Choose the correctly spelt word and click the button corresponding to it.

A) Conniosseur B) Connoisseur
C)  Connossieur D) Connosseiur
 
Answer & Explanation Answer: B) Connoisseur

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

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

What is the main motive behind dealer incentives?

A) encouraging the maximum number of sales of the manufacturers products B) to maintain a permanent deal
C) maintaining good dealer-manufacturer relationships D) ensuring that the customer gets the best possible deal
 
Answer & Explanation Answer: A) encouraging the maximum number of sales of the manufacturers products

Explanation:

The main motive behind dealer incentives is to give the products at some low price for the dealers who take the products in bulk and maintain good selling of these products.

Report Error

View Answer Report Error Discuss

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

2 2394
Q:

First generation of computer was based on which technology?

A) Vaccum Tube B) VLSI
C) LSI D) Transistor
 
Answer & Explanation Answer: A) Vaccum Tube

Explanation:

The first computers used vacuum tubes for circuitry and magnetic drums for memory, and were often enormous, taking up entire rooms.

Report Error

View Answer Report Error Discuss

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

4 2394
Q:

The reverse effect of X-ray emission is

A) Raman effect B) Compton effect
C) Zeeman effect D) Photo-electric effect
 
Answer & Explanation Answer: D) Photo-electric effect

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2394
Q:

Improve the bracketed part of the sentence.
The exhausted travellers seemed relieved when the train finally (came into) the station.

A) pulled in B) pulled into
C) pulled onto D) no improvement
 
Answer & Explanation Answer: A) pulled in

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2394
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 correctalternative and click the button corresponding to it. In case no improvement is needed, click the button corresponding to "No improvement".

Owing to his respiratory problems the doctor has told him to refrain from smoking.

A) to not refrain from B) to refrain to
C) to refrain not from D) No improvement
 
Answer & Explanation Answer: D) No improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2393
Q:

Mercedes luggage is a symbol of

Answer

Mercedes's language in reference to the story "Call of the Wild" actually means civilization. She had brought numerous belongings along with her and they were much more than the dogs could pull. Her decision of not parting with any of the belongings would ultimately lead to her death. One can easily draw a clear difference between civilization and wildness.

Report Error

View answer Workspace Report Error Discuss

Subject: Books and Authors Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk

5 2393