Questions

Q:

For an object, the state of rest is considered to be the state of ______ speed.

A) increasing B)
C) inverse D) zero
 
Answer & Explanation Answer: D) zero

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2403
Q:

A tone in music is a sound that

A) has high frequency B) has definite pitch
C) has low duration D) None of the above
 
Answer & Explanation Answer: B) has definite pitch

Explanation:

A tone in music is a sound that has definite pitch. Pitch is nothing but the relative highness or lowness of a sound.

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 2402
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 2402
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 2401
Q:

What does in transit to destination mean?

A) on the way for delivery B) delay in delivery
C) booking processed but not shipped D) None of the above
 
Answer & Explanation Answer: A) on the way for delivery

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Job Role: Analyst

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

Which of the following is part of the axial skeleton?

A) Thigh bone B) Shoulder bones
C) Vertebral column D) Foot bones
 
Answer & Explanation Answer: C) Vertebral column

Explanation:

The axial skeleton is the part of the skeleton that consists of the bones of the head and trunk of a vertebrate. In the human skeleton, it consists of 80 bones and is composed of six parts; the skull bones, the ossicles of the middle ear, the hyoid bone, the rib cage, sternum and the vertebral column.

 

Bones of shoulder, thigh and foot are the part of appendicular skeleton. 

  

Hence, Vertebral column is the part of axial skeleton.

Report Error

View Answer Report Error Discuss

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

3 2400
Q:

A perfectly inelastic demand curve

A) Vertical with some steep B) Perfectly horizontal
C) Horizontal with some steep D) Perfectly vertical
 
Answer & Explanation Answer: D) Perfectly vertical

Explanation:

A perfectly inelastic demand curve is perfectly vertical either up or down in any way.

Report Error

View Answer Report Error Discuss

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

1 2400