Questions

Q:

Who is the head of the RBI panel on MSME revival?

A) Manoj Das B) U K Sinha
C) Simba D) None of the above
 
Answer & Explanation Answer: B) U K Sinha

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 2384
Q:

Who wrote the book "Ignited Minds"?

A) Vikram Seth B) APJ Abdul Kalam
C) Arundhati Roy D) Manmohan Singh
 
Answer & Explanation Answer: B) APJ Abdul Kalam

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2384
Q:

The light of distant stars is affected by

A) Interstellar Dust B) The Earth's Atmosphere
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2384
Q:

Number of alary muscles in cockroach

A) 12 B) 12 pairs
C) 6 D) 24 pairs
 
Answer & Explanation Answer: B) 12 pairs

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2384
Q:

Which is not a duty of a member of congress?

A) helping constituents B) educating the public
C) lawmaking D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

Members of Congress has five main functions:

 

1. lawmaking,

2. representing the people,

3. performing oversight,

4. helping constituents, and

5. educating the public.

Report Error

View Answer Report Error Discuss

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

1 2383
Q:

A large underground economy results in an

A) Understated GDP price index B) Understated GDP
C) Overstated GDP D) Overstated GDP price index
 
Answer & Explanation Answer: C) Overstated GDP

Explanation:

A large underground economy results in an Overstated GDP. The underground economy is also called as Black market. It refers to illegal economic activity. Transactions in the underground economy are illegal either because the good or service being traded is illegal or because an otherwise licit transaction does not comply with government reporting requirements.

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 2383
Q:

Where does most digestion take place?

A) Stomach B) Large intestine
C) Small intestine D) Mouth
 
Answer & Explanation Answer: C) Small intestine

Explanation:

The digestion process starts in the mouth and the complete digestion process completes in the small intestine where all the nutrients in the food are absorbed.

Report Error

View Answer Report Error Discuss

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

1 2382
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 2382