Questions

Q:

Which of the following represents a positive economic statement?

A) The government should extend unemployment benefits. B) The unemployment rate is too high.
C) Taxes should not be increased since that will lower spending. D) The unemployment rate is 4.8 percent.
 
Answer & Explanation Answer: D) The unemployment rate is 4.8 percent.

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2405
Q:

Improve the bracketed part of the sentence.
Bull markets, John Templeton said, are born on pessimism, grow on scepticism, mature on optimism and (die for) euphoria.

A) die on B) die at
C) die above D) No improvement
 
Answer & Explanation Answer: A) die on

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2405
Q:

What unit is used to measure weighted average atomic mass?

A) amu B) gram/mole
C) Both A & B D) 1/mole
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The unit which is used to measure weighted average atomic mass is Atomic Mass Unit (amu).

The amu or gram/mole can also be used for this measure.

Report Error

View Answer Report Error Discuss

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

2 2405
Q:

A yellow element that stinks when burned

A) Bromine B) Sulphur
C) Chlorine D) Fluorine
 
Answer & Explanation Answer: B) Sulphur

Explanation:

A yellow element that stinks when burned is Sulphur.

Report Error

View Answer Report Error Discuss

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

1 2405
Q:

The fish that can taste with its whole body?

A) Tropical cockroach B) Arctic tern
C) Catfish D) Koala
 
Answer & Explanation Answer: C) Catfish

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2405
Q:

The concrete slump recommended for beams and slabs -

A) 45 to 75 mm B) 50 to 100 mm
C) 25 to 45 mm D) 30 to 125 mm
 
Answer & Explanation Answer: D) 30 to 125 mm

Explanation:

The concrete slump recommended for beams and slabs is 30 to 125 mm.

Report Error

View Answer Report Error Discuss

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

0 2405
Q:

Another name for Indira Point is: ______________________.

A) Parson point B) La-Hi-Ching
C) Pygmalion point D) All options are correct
 
Answer & Explanation Answer: D) All options are correct

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2405
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 2405