Questions

Q:

What is FtDisk?

Answer

It is a fault tolerance disk driver for Windows NT.

Report Error

View answer Workspace Report Error Discuss

1 2487
Q:

All India Radio was founded in

A) 1935 B) 1931
C) 1930 D) 1927
 
Answer & Explanation Answer: C) 1930

Explanation:

All India Radio founded in 1930.

With over 420 radio stations in about 23 languages & 179 dialects.

AIR is one of the largest radio broadcasters in world.

It also has 99.19% population coverage & 18 FM channels.

Report Error

View Answer Report Error Discuss

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

2 2487
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 2486
Q:

If m+n=1, then the value of m3+n3+3mn is equal to

A) 0 B) 1
C) 2 D) 3
 
Answer & Explanation Answer: B) 1

Explanation:
Report Error

View Answer Report Error Discuss

0 2486
Q:

What are the flags in 8086?

Answer

In 8086 Carry flag, Parity flag, Ausiliary carry flag, Zero flag, Overflow flag, Trace flag, Interrupt flag, Direction flag, and Sing flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2486
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Fever in the season of dengue is sending Calcuttans scurrying to hospitals for admission, triggering a shortage of beds that has forced some private health care institutes to even postpone planned surgeries. Apollo Gleneagles Hospitals on the Bypass had 504 patients in its care as on Thursday of whom 70 had been admitted with fever. Belle Vue Clinic had 180 patients, 32 of them with dengue. Calcutta Medical Research Institute had 350 patients 60 of them with fever.

The number of people admitted for treatment of fever caused by dengue or any undiagnosed illness has been rising every day across hospitals for more than a fortnight.

"There has been heavy pressure on all private hospitals for admission of dengue and cases of unknown fever since the beginning of August. Now it is a surge," said Pradip Tondon, President of the Association of Hospitals of Eastern India.

In July, four to five patients were getting admitted with fever on an average in every hospital. The number has since ballooned with the Calcutta Municipal Corporation apparently in denial about the extent of the dengue outbreak and the Government focused on playing down the threat.

Such has been the rush of patients with fever that some hospitals are calling up people to postpone admissions planned in advance, mostly for surgeries. "We have told many people to come only when we call them to confirm availability of beds," said an official at Belle Vue.


The reason for shortage of beds in hospitals is

A) Malaria B) Fever
C) Admissions in Calcutta Municipal Corporation D) Shortage of medicines
 
Answer & Explanation Answer: B) Fever

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2486
Q:

An ionic bond is formed when

A) sharing of electrons B) transfer of electrons
C) Both A & B D) losing of protons
 
Answer & Explanation Answer: B) transfer of electrons

Explanation:

An ionic bond is formed in between the two atoms with the transfer of electrons from an atom to the other to become stable after pairing.

an_ionic_bond_is_formed_when1535690989.jpg image

The atom which has low ionization energy will give some of its electrons to get stable electronic configuration .

Report Error

View Answer Report Error Discuss

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

2 2486
Q:

Glycolysis is the conversion of

A) Glucose to pyruvate B) Glucose to proteins
C) Pyruvate to glucose D) All of the above
 
Answer & Explanation Answer: A) Glucose to pyruvate

Explanation:

Glycolysis is the metabolic process of converting 1 molecule of glucose to 2 molecules of pyruvate through a series of 10 enzyme catalyzed reactions.

Report Error

View Answer Report Error Discuss

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

1 2486