Questions

Q:

Which vitamin is also called as H vitamin?

A) Vitamin B7 B) Vitamin B12
C) Vitamin B3 D) Vitamin B5
 
Answer & Explanation Answer: A) Vitamin B7

Explanation:

Biotin is a water-soluble B vitamin, also called vitamin B7 and formerly known as vitamin H or coenzyme R.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration

2 2404
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 2404
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 2403
Q:

Which of the following country has hosted the ICC World Cup most times?

A) England B) Australia
C) West Indies D) India
 
Answer & Explanation Answer: A) England

Explanation:

England has hosted the ICC World Cup most times. In 1975, 1979, 1983, 1999 & 2019 it hosted.

Report Error

View Answer Report Error Discuss

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

5 2403
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 2402
Q:

Steel contains

A) no carbon B) < 2% of carbon
C) > 10% of carbon D) > 29% of carbon
 
Answer & Explanation Answer: B) < 2% of carbon

Explanation:

To make steel, iron ore is first mined from the ground. It is then smelted in blast furnaces where the impurities are removed and carbon is added.

In simple, steel is iron alloyed with carbon, usually 0 - 2%.

Report Error

View Answer Report Error Discuss

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

12 2402
Q:

In the given question, a statement divided into different segments is given. The first segment is fixed, rearrange the other segments to form a coherent statement.

Introduction of the finance bill was delayed/ budget allocation for the cottage (P)/ debating over the renewal of the last year's (Q)/ by a week as the lawmakers were busy (R)/ industry which got wasted (S)

A) PQRS B) SPQR
C) RQPS D) QRPS
 
Answer & Explanation Answer: C) RQPS

Explanation:

This question can be best solved by the elimination technique. 'was delayed budget allocation', 'was delayed industry which' and 'was delayed debating over' do not make sense; hence P, Q and S can't follow the first segment. This eliminates options 1, 2 and 4. Option 5 places S after R which makes the resultant segment as 'lawmakers were busy industry' which is illogical; hence option 5 can also be eliminated. Hence, the correct sequence is RQPS.

Report Error

View Answer Report Error Discuss

Filed Under: English

0 2401
Q:

Chhatrapati Shivaji Maharaj International Airport is located in?

A) Mumbai B) Hyderabad
C) Chennai D) New Delhi
 
Answer & Explanation Answer: A) Mumbai

Explanation:

Chhatrapati Shivaji Maharaj International Airport is located in Mumbai.

Report Error

View Answer Report Error Discuss

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

2 2400