Questions

Q:

The passage of an electric current through a conducting liquid causes ___________.

A) Galvanisation B) Evaporation
C) Physical Reaction D) Chemical Reaction
 
Answer & Explanation Answer: D) Chemical Reaction

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

2 2405
Q:

National Housing Bank is a subsidiary of

A) State Bank of India B) Reserve Bank of India
C) Bank of India D) World Bank
 
Answer & Explanation Answer: C) Bank of India

Explanation:

National Housing Bank is a wholly subsidiary of RBI - Reserve Bank of India.

Report Error

View Answer Report Error Discuss

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

4 2405
Q:

Another name for Indira Point is: ______________________.

A) Parson point B) La-Hi-Ching
C) Pygmalion point D) All options are correct
 
Answer & Explanation Answer: D) All options are correct

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO , Bank Clerk

0 2405
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Without breakfast, all of us ­ irrespective of age ­ are likely to experience the late morning slump; tiredness, sleepiness and the urge to sit back. Our efficiency goes down further as the day progresses.Moreover, skipping the first meal of the day leads to intense hunger pangs by late morning and we end up eating chips, samosas, burgers or other high­ fat unhealthy foods. Break fast­skippers are more likely to be overweight. A good breakfast leads to a more active, productive day. Research has found a definite connection between skipping breakfast and memory impairment in both young and older adults. Moreover, breakfast is directly linked with performance in school and college. Breakfast should contribute at least one ­fourth of our daily requirement of nutrients. An ideal breakfast should contain adequate amounts of carbohydrates, proteins and fats in addition to minerals and vitamins. Essentially this means including most of our food groups in the morning meal. Whole grain cereals ­ like atta in parathas and puris, dalia, suji, etc. are an integral part of the traditional Indian breakfast. Their high fibre and protein content provides a feeling of satisfaction, which lowers the urge to snack before lunch. On the other hand, high­ sugar foods actually make people sleepier, not active.

Milk, cheese, eggs or dals (as sprouts in idli or dosas or as sambhar) are other protein sources. A serving of milk (one cup) provides B­ complex vitamins and also minerals like zinc, magnesium and calcium. Fruits or vegetables provide valuable vitamin C and keep constipation away.

 

An ideal breakfast should contain

A) carbohydrates, proteins, fats, minerals and vitamins B) some food groups
C) only high fibre and protein D) foods of our choice
 
Answer & Explanation Answer: A) carbohydrates, proteins, fats, minerals and vitamins

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2405
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Dyslexia is a perceptual disorder often occurring in persons of normal, or even above average intelligence. The reader is unable to perceive correctly what is on a page. Letters and numbers often appear reversed: "b" seems to be "d","quite" is "quiet" and "from" is "form". The reader tends to leave out letters or words or insert words or letters that are not there. Vowel and consonant sounds may be confused. Many dyslexics are left­handed or able to write with either hand. They often confuse left and right. Learning to speak may also be delayed beyond infancy. The condition seems to be inherited. It may persist into adulthood. However, with early recognition and specialized approaches to teaching reading, most dyslexics can learn to read.

Some researchers believe that latent dyslexia may be aggravated by the way reading is taught. The modern whole­word, or look­and­say, method seems to be more of a hindrance to learning for dyslexics than it is for ordinary pupils. The phonetic method of teaching students to learn letters and sound them out appears to achieve better reading results. The problem of words that cannot be sounded out ­ such as rough, laugh or through ­ is not solved by phonetics. These words must simply be memorized. However, for children with dyslexia the problem can be compounded by the failure of parents or teachers to recognize the condition. This can easily lead to emotional problems for dyslexic children, who cannot understand their failure to keep up with their classmates.


Dyslexia, often occurring in persons of normal, or even above average intelligence, is a __________

A) Conceptual disorder B) Pathological disease
C) Perceptive disorder D) Perceptual disorder
 
Answer & Explanation Answer: D) Perceptual disorder

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

What help ensure that the XIV Systems cache does not become a bottleneck?

A) central cache locking mechanism B) use of industry standard chip technology
C) each module is responsible for caching the data in that module D) having all modules understand what is held cache at all times
 
Answer & Explanation Answer: C) each module is responsible for caching the data in that module

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2404
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 2404