Questions

Q:

The current atomic model would be revised if 

A) better microscopes are invented in the future B) a new element is discovered in the future
C) better microscopes were being used to study its structure D) new information about an atoms structure is discovered
 
Answer & Explanation Answer: D) new information about an atoms structure is discovered

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2226
Q:

The chief constituent of gobar gas is

A) Methane B) Carbon dioxide
C) Ethane D) Hydrogen
 
Answer & Explanation Answer: A) Methane

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2226
Q:

Gluconeogenesis is a term that describes the synthesis of

Answer

Gluconeogenesis is a metabolic pathway that leads to the synthesis of glucose from pyruvate and other non-carbohydrate precursors, even in non-photosynthetic organisms.


 


It occurs in all microorganisms, fungi, plants and animals, and the reactions are essentially the same, leading to the synthesis of one glucose molecule from two pyruvate molecules. Therefore, it is in essence glycolysis in reverse, which instead goes from glucose to pyruvate, and shares seven enzymes with it.

Report Error

View answer Workspace Report Error Discuss

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

0 2225
Q:

Project Management - Introduction

What is a Project? What are its Characteristics?

Answer

A Project is a temporary endeavour undertaken to create a unique product, service or result.


Characteristics:


1.Temporary 


    Temporary means that every project has a definite beginning and a definite end.


2. Unique Products, Services or Results


   Uniqueness is an important characteristic of project deliverables. For example, many thousands of office buildings have been developed, but each individual facility is unique - different owner, different design, different location, different contractors, and so on.


3. Progressive Elaboration


   Progressive elaboration means developing in steps, and continuing by increments . For example, the project scope will be broadly described early in the project and made more explicit and detailed as the project team develops a better and more complete understanding of the objectives and deliverables.

Report Error

View answer Workspace Report Error Discuss

0 2225
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Close project Phase?

Answer

I. Inputs



  • Project management plan

  • Contract documentation

  • Enterprise environmental factors

  • Organizational process assets

  • Work performance information

  • Deliverables


II. Tools and Techniques



  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs



  • Administrative closure procedure

  • Contract closure procedure

  • Final product, service, or result

  • Organisational process assets (updates)

Report Error

View answer Workspace Report Error Discuss

0 2223
Q:

Which is the largest coal producing country in the World?

A) India B) China
C) Russia D) New-zealand
 
Answer & Explanation Answer: B) China

Explanation:

China has been by far the biggest coal producing country over the last three decades. The country produced about 3.6 billion tonnes (Bt) of coal in 2012 accounting for over 47% of the world's total coal output.

Report Error

View Answer Report Error Discuss

6 2223
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 2222
Q:

The blind spot of the eye is where the optic nerve leaves the eyeball.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Everyone of us have a blind spot which is a small portion within the visual field of every eye where the optic nerve and blood vessels leave the eyeball. Optic nerve is connected to brain ehich carries images of what we see.


the_blind_spot_of_the_eye_is_where1536397433.jpg image

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration

0 2222