Questions

Q:

What unit is used to measure weighted average atomic mass?

A) amu B) gram/mole
C) Both A & B D) 1/mole
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The unit which is used to measure weighted average atomic mass is Atomic Mass Unit (amu).

The amu or gram/mole can also be used for this measure.

Report Error

View Answer Report Error Discuss

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

2 2405
Q:

What natural factors contribute to global climate?

A) Forest Fires B) Solar Activity
C) Melting Permafrost D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Global warming is the increase in the earth’s average temperature due to release of several greenhouse gases to the atmosphere by humans. Global warming is affecting many parts of the world.

 

Natural Causes include :

1. Solar Activity

2. Melting Permafrost

3. Forest Fires 

 

Human made causes include :

1. Deforestation

2. Overpopulation

3. Landfills

4. Mining

5. Fertilizer Use

Report Error

View Answer Report Error Discuss

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

2 2405
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 2405
Q:

Voiceless it cries, wingless flutters, toothless bites, mouth-less mutters.

What is it?

Answer

It is The Wind which cries without a voice, flutters without wings, bites toothless and mutters mouthless.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , GRE
Job Role: Analyst , Bank PO

1 2405
Q:

Which of the following defines a genome?

A) Every human cell B) the complete set of an organism's genes and other DNA sequences
C) the complete set of an organism's polypeptides D) a karyotype
 
Answer & Explanation Answer: B) the complete set of an organism's genes and other DNA sequences

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2404
Q:

Hypercalcemia can be caused by

A) malignancy B) hyper-parathyroidism
C) both A & B D) None of the above
 
Answer & Explanation Answer: C) both A & B

Explanation:

Hypercalcemia is a condition in which the calcium level in your blood is above normal. Too much calcium in your blood can weaken your bones, create kidney stones, and interfere with how your heart and brain work.

Hypercalcemia_can_be_caused_by1550553960.png image

Hypercalcemia is usually a result of overactive parathyroid glands.

Report Error

View Answer Report Error Discuss

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

2 2404
Q:

The goal of a statement of purpose is

A) To indicate what is expected to be accomplished in doing an experiment B) To calculate an average of two or more measurements
C) To list the materials needed for an experiment D) To demonstrate that a hypothesis is wrong
 
Answer & Explanation Answer: A) To indicate what is expected to be accomplished in doing an experiment

Explanation:

The goal of a statement of purpose is to indicate what is expected to be accomplished in doing an experiment.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2404
Q:

What form of Shiva is most prominent in the Brihadeshvara Temple built by the Chola dynasty?

A) Harihara B) Bhairava
C) .Rudra D) Tripurantaka
 
Answer & Explanation Answer: D) Tripurantaka

Explanation:

The most prominent form of Shiva in Brihadeshvara Temple built by Chola dynasty is Tripuntaka. Tripurantaka is a manifestation of the Hindu god Shiva. In this aspect, Shiva is depicted with four arms wielding a bow and arrow. Shiva as Tripurantaka is accredited with destroying three mythical cities of the Asuras. It is believed that the Rudraksha came from lord Shiva’s eyes, when he destroyed Tripura.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2403