Questions

Q:

When backed by buying, power wants become

A) demands B) physical needs
C) exchanges D) social needs
 
Answer & Explanation Answer: A) demands

Explanation:

When backed by buying, power wants become demands. 

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2832
Q:

The PCl5 molecule has trigonal bipyramidal structure. Therefore,the hybridization of p orbitals should be

A) sp2 B) sp3
C) dsp2 D) dsp3
 
Answer & Explanation Answer: D) dsp3

Explanation:

The P atom needs five orbitals to form the five P-Cl bonds. It has a 3s and three 3p orbitals, so it must use one of its 3d orbitals to form the fifth bond. These orbitals are hybridized to form five sp3d orbitals that just happen to point in the right directions to form a trigonal bipyramid.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2832
Q:

What is BGP ?

Answer

It is a protocol used to advertise the set of networks that can be reached with in an autonomous system. BGP enables this information to be shared with the autonomous system. 

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2832
Q:

A simple rule concerning water and electrolyte regulation is

A) water passively follows salt B) salt actively follows water
C) water actively follows salt D) salt passively follows water
 
Answer & Explanation Answer: A) water passively follows salt

Explanation:

A simple rule concerning water and electrolyte regulation is water passively follows salt.

Report Error

View Answer Report Error Discuss

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

2 2831
Q:

When was Bank of Central African State formed

A) 1974 B) 1978
C) 1973 D) 1979
 
Answer & Explanation Answer: C) 1973

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2831
Q:

Why should you use the Ad Preview and Diagnosis tool to check if your ads are live and running on Google?

Answer

By searching for keywords that trigger your ad, you can rack up impressions without clicks, which may lower your Click-Through Rate, which may prevent your ad from appearing as often as it is eligible.

Report Error

View answer Workspace Report Error Discuss

0 2831
Q:

Who had announced that democracy is a government " of the people, by the people and for the people " ?

A) Abraham Lincoln B) George Washignton
C) Theodore Roosevelt D) Winston Churchill
 
Answer & Explanation Answer: A) Abraham Lincoln

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

10 2831
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 2831