Questions

Q:

What branch of government is responsible for enforcing laws?

A) Judicial Branch B) Executive Branch
C) Legislative Branch D) All of the above
 
Answer & Explanation Answer: B) Executive Branch

Explanation:

Executive Branch of government is responsible for enforcing laws.

Report Error

View Answer Report Error Discuss

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

7 2370
Q:

Activation of the receptors by stimuli is called

A) Perception B) Habituation
C) Adaptation D) Sensation
 
Answer & Explanation Answer: D) Sensation

Explanation:

Activation of the receptors by stimuli is called Sensation.

Report Error

View Answer Report Error Discuss

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

5 2370
Q:

Which microscope is often used to view metal surfaces?

A) Optical microscopes B) Scanning tunneling microscopes
C) Electron microscopes D) None of the above
 
Answer & Explanation Answer: B) Scanning tunneling microscopes

Explanation:

Microscopes are of three types. They are :

 

1) Optical microscopes

 

2) Electron microscopes

 

3) Scanning tunneling microscopes

 

 Which_microscope_is_often_used_to_view_metal_surfaces1538720175.png image

 

Scanning tunneling microscopes are the microscopes that are used to view metal surfaces.

Report Error

View Answer Report Error Discuss

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

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

Produces a usable form of energy for the cell

A) Lysosomes B) Vacuoles
C) Mitochondria D) Ribosomes
 
Answer & Explanation Answer: C) Mitochondria

Explanation:

We all know that, Mitochondria is the powerhouse of the cell. In both Plants and animals, it produces a usable form of energy.

Report Error

View Answer Report Error Discuss

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

3 2369
Q:

The given sentences, when properly sequenced, form a coherent paragraph. Each sentence is labelled with a letter. Choose the most logical order of the sentences from among the five given choices to construct a coherent paragraph keeping 1 as the first statement.

1) For first-time Indian travellers, stepping out of the airport in Singapore or Japan is a momentous, potentially mindset-changing experience.

A) But walk in a cramped gully in Delhi or even on the main road and everything that is not desirable inside, finds its way outside.

B) Public littering is a social issue that results in massive aesthetic, financial and health- related costs for India. It’s not as if we don’t value cleanliness. Our homes are the textbook definition of clean.

C) How does that compare with our paan- stained buses filled with peanut shells?

D) How can bustling cities packed with people be so spotless? As far as the eye can go, there is not a single piece of stray paper on the road or in public transport.

A) BCAD B) DCBA
C) DBCA D) ADBC
 
Answer & Explanation Answer: B) DCBA

Explanation:

The correct sequence is DCBA.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2368
Q:

What is XPath?

Answer

XPath is an expressions to select a xml node in an XML document.


It allows the navigation on the XML document to the straight to the element where we need to reach and access the attributes.


 

Report Error

View answer Workspace Report Error Discuss

1 2368
Q:

Waksman got the noble prize for the discovery of

A) Streptomycin B) Chloromycetin
C) Pencillin D) Neomycin
 
Answer & Explanation Answer: A) Streptomycin

Explanation:

In 1952, Waksman was awarded the Nobel Prize in Physiology or Medicine in recognition "for his discovery of streptomycin," the first antibiotic active against tuberculosis.

Report Error

View Answer Report Error Discuss

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

2 2367