Questions

Q:

How can you describe an operational level agreement (OLA) ?

A) It is a legally binding contract outlining services delivered to an IT service provider that underpin a service that provider delivers to its customers. B) It is a written agreement between a supplier and the IT customer(s), defining the key service targets and responsibilities of both parties.
C) It contains targets that underpin those within an SLA to ensure that targets will not be breached by failure of the supporting activity. D) It is an agreement between a supplier and another part of the same organization that assists with the provision of services.
 
Answer & Explanation Answer: D) It is an agreement between a supplier and another part of the same organization that assists with the provision of services.

Explanation:

An agreement between an IT service provider and another part of the same organization. An OLA supports the IT service provider's delivery of services to customers. The OLA defines the goods or services to be provided and the responsibilities of both parties.

 

* For an example there be an OLA - between the IT service provider and a acquiring department to obtain hardware in discussed times - between the Service Desk and a support group to provide Incident resolution in accepted times.

Report Error

View Answer Report Error Discuss

7 2339
Q:

What are the Monomers that make up Proteins?

A) Amino acids B) Nucleotides
C) Disaccharides D) Chaperones
 
Answer & Explanation Answer: A) Amino acids

Explanation:

Proteins are long chains of Amino acids. That is in brief, Amino acids are the monomers of Proteins. Amino acids are compounds which contain both an amino group and a carboxylic group. Proteins are made up of 20 essential amino acids.

Monomer means a small molecule of an organic substance i.e, building block in general.

 

Report Error

View Answer Report Error Discuss

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

4 2339
Q:

Lala lajapathi rai is the author of the book

A) India Divided B) Hind Swaraj
C) Unhappy India D) Mother India
 
Answer & Explanation Answer: C) Unhappy India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 2339
Q:

Who was the first to sail round the world ?

A) Francis Drake B) Columbus
C) Magellan D) Vasco da Gama
 
Answer & Explanation Answer: C) Magellan

Explanation:

Magellan was a Portuguese sailor who was the first to sail round the world.

Report Error

View Answer Report Error Discuss

Filed Under: World History

1 2339
Q:

The First Speaker against whom a motion of no-cofidence was moved in the in the Lok Sabha was_______

A) Balram Jhakhar B) G.V. Mavalankar
C) Hukum Singh D) K.S. Hedge
 
Answer & Explanation Answer: B) G.V. Mavalankar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

1 2339
Q:

The President of India is elected by the __________

A) members of the Lok Sabha B) members of both Houses of the Parliament
C) members of the State Legislature D) by an electoral college consisting of the elected members of both Houses of the Parliament and state Assemblies
 
Answer & Explanation Answer: D) by an electoral college consisting of the elected members of both Houses of the Parliament and state Assemblies

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

0 2338
Q:

The three - time Formula One champion who passed away recently

Answer

Sir Jack Brabham

Report Error

View answer Workspace Report Error Discuss

0 2338
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2337