Questions

Q:

When is International Day of Non-Violence,recognized by the UN,observed on M.K.Gandhi's birthday is observed

A) December 11 B) November 29
C) October 2 D) Second wednesday of october
 
Answer & Explanation Answer: C) October 2

Explanation:
Report Error

View Answer Report Error Discuss

1 2673
Q:

Project Time Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Activity Definition ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Work breakdown structure

  • WBS dictionary

  • Project management plan


II. Tools and Techniques



  • Decomposition

  • Templates

  • Rolling wave planning

  • Expert judgment

  • Planning component


III. Outputs



  • Activity list

  • Activity attributes

  • Milestone list

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2673
Q:

Which of the following civilization is associated with 'Achaemenid Empire'?

A) Chinese Civilization B) Iranian Civilization
C) Egyptian Civilization D) Arab Civilization
 
Answer & Explanation Answer: B) Iranian Civilization

Explanation:

In the middle of the 6th centuryB.C, a powerful empire was established in Iran this empire which lasted over two centuries is known as the Achaemenid Empire. The founder of this Empire was Cyrus with his capital at pasargadae. In 539 B.C, cyrus defeated the Babylonians and extended his empire over a vast territory up to Asia Miner. His successor was Darius I (522-486 B.C).

Report Error

View Answer Report Error Discuss

Filed Under: World History

0 2672
Q:

Order of basicity of amines

Answer

The order of basicity for primary, secondary and tertiary amines are:


Secondary > Primary > Tertiary > NH3


 


* Amines are basic in nature as they have lone pair of electrons on nitrogen. Therefore, they have a strong tendency to donate this lone pair of electrons to electron acceptors.


* The stability of conjugate acids formed is dependent on the extent of H-bonding,and greater the number of H-atoms on N more stable is the conjugate acid.


* The conjugate acid of primary amine is the most stable with greater number (3) of H-bonds than > Secondary > tertiary. But primary amines are less basic than secondary as the electron density on the N atom is less and lone pair of electrons are not readily available for protonation.


* The two opposing factors i.e. the stability of conjugate acids formed and ease of availability of electrons for Protonation, balance each other in case of secondary amines and it is most basic.

Report Error

View answer Workspace Report Error Discuss

Subject: Chemistry Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2672
Q:

Phage typing is based on the fact that

A) viruses cause disease B) bacteria and viruses are related
C) bacteria are destroyed by viruses D) bacterial viruses attack specific cells
 
Answer & Explanation Answer: D) bacterial viruses attack specific cells

Explanation:

Phage typing is based on the fact that bacterial viruses attack specific cells. Phage typing is a method used for detecting single strains of bacteria. It is used to trace the source of outbreaks of infections. 

Report Error

View Answer Report Error Discuss

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

1 2672
Q:

In the following question, out of the four alternatives, choose the word which is opposite in meaning to the given word and click the button corresponding to it.

SOOTHE

A)  QUENCH B) MITIGATE
C)  HEAL D) AGITATE
 
Answer & Explanation Answer: D) AGITATE

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

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

Student specific scholarships are awarded to students who

A) have impressive academic achievements B) are members of a certain group
C) have impressive athletic accomplishments D) demonstrates a specific skill
 
Answer & Explanation Answer: A) have impressive academic achievements

Explanation:

A scholarship is an award of financial aid that helps students to continue their studies further by a popular donor or from the scheme of the government. Student specific scholarships are awarded to students who have impressive academic achievements.

Report Error

View Answer Report Error Discuss

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

3 2668