Questions

Q:

Who was Shivaji’s Guru?

A) Eknath B) Tukaram
C) Dnyanesh D) Samartha Ramadas
 
Answer & Explanation Answer: D) Samartha Ramadas

Explanation:

Shivaji’s Guru was Shree Samarth Ramdas was a noted 17th-century saint and spiritual poet of Maharashtra. He is most remembered for his Advaita Vedantist text, the Dasbodh. Ramdas was a devotee of Hanuman and Rama.

Report Error

View Answer Report Error Discuss

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

7 2390
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 2389
Q:

Plant cell walls consist mainly of

A) Chitin B) peptidoglycan
C) cellulose D) chlorophyll
 
Answer & Explanation Answer: C) cellulose

Explanation:

Plant cell walls are mostly made up of the molecule cellulose. Cellulose is a polysaccharide, a complex sugar made of long chains of glucose.

 

The cell wall must be made of thick and strong material as it provides the structural shape of the plant and protection from insects and microorganisms.

Report Error

View Answer Report Error Discuss

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

1 2389
Q:

Which type of bond is found in sodium bromide?

A) Ionic B) Covalent
C) Polar covalent D) None of the above
 
Answer & Explanation Answer: A) Ionic

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2389
Q:

The process of bones increasing in width is known as

A) appositional growth B) concentric growth
C) closing of the epiphyseal plate D) long bones reaching adult length and width
 
Answer & Explanation Answer: A) appositional growth

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2388
Q:

An implied power is one that

Answer

Implied powers are powers of U.S. government which have not been explicitly granted by the Constitution but that is implied by the necessary and proper clause to be delegated for the purpose of carrying out the enumerated powers.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2388
Q:

"Words in the Garden" festival on Gandhian philosophy is scheduled to be held in which city?

A) Hyderabad B) Pune
C) Kolkata D) New Delhi
 
Answer & Explanation Answer: D) New Delhi

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

The Nobel Literature Prize 2018 has been awarded to

A) Bob Dylan B) Shashi Tharoor
C) George Saunders D) No one
 
Answer & Explanation Answer: D) No one

Explanation:

This is for the first time that no Literature Prize will be given in 70 years because of a #MeToo scandal.

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 2387