Questions

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

A trial balance is prepared to

A) measure credits B) measure debits
C) measure credits = debits are not D) None of the above
 
Answer & Explanation Answer: C) measure credits = debits are not

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2484
Q:

Farming in the early New England colonies was challenging because

A) unfamiliar weather and soil conditions affected cultivation B) English laws restricted which crops farmers could plant
C) English investors promoted manufacturing over farming D) foreign plants soon grew out of control in the American soil
 
Answer & Explanation Answer: A) unfamiliar weather and soil conditions affected cultivation

Explanation:

Farming in the early New England colonies was challenging because unfamiliar weather and soil conditions affected cultivation.

Report Error

View Answer Report Error Discuss

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

2 2484
Q:

Tides in the sea are caused by 

A) Effect of Sun B) Effect of Moon
C) Combined effect of Moon and Sun D) Gravitational Force of Earth and Sun
 
Answer & Explanation Answer: C) Combined effect of Moon and Sun

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2484
Q:

Project Time Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Activity Duration Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Activity list

  • Activity attributes

  • Activity resource requirements

  • Resource calendars

  • Project management plan


               - Risk register


               - Activity cost estimates


II. Tools and Techniques



  • Expert judgment

  • Analogous  estimating

  • Parametric estimating

  • Three-point estimates 

  • Reserve analysis


III. Outputs



  • Activity duration estimates

  • Activity attributes (updates)

Report Error

View answer Workspace Report Error Discuss

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

The American cotton textile industry moved from new England to the Southern States because:

A) The latter have a more humid climate B) New England diversified its manufacturing industries
C) The Population growth in the south provided a major market D) The south offered lower coast of prodution
 
Answer & Explanation Answer: D) The south offered lower coast of prodution

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2483
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 2483