Questions

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 2378
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 2378
Q:

The credit of inventing the television goes to

A) Philo Farnsworth B) John Logie Baird
C) Charles Francis Jenkins D) None of the above
 
Answer & Explanation Answer: A) Philo Farnsworth

Explanation:

The credit of inventing the television goes to Philo Farnsworth. Electronic television was first successfully demonstrated in San Francisco on Sept. 7, 1927.

 

The_credit_of_inventing_the_television_goes_to1549279715.jpg image

Report Error

View Answer Report Error Discuss

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

0 2378
Q:

'Babeuf's Conspiracy' , an important event in the history socialism, was associated with which of the following countries?

A) Gemany B) France
C) Italy D) England
 
Answer & Explanation Answer: B) France

Explanation:

The wide gap between the aims of the French Revolution(equality in economic, social and political life) and the actual conditions in France after revolution created serious discontent among the people. It led to an attempt to overthrow the existing government in France with a view to building a society based on socialist ideas. This attempt, known as Babeuf's conspiracy, is an important event in the history of socialism.

      The conspiracy,as the name indicates, was the work of Noel Babeuf. He was born in 1760 and has participated in the French Revolution . He organised a secret society called the 'Society of the Equals'. 

Report Error

View Answer Report Error Discuss

Filed Under: World History

0 2377
Q:

Which describes how Africa was divided into countries?

A) Ethnic groups were each given their own country B) Artificial political unity was attempted
C) Boundaries were made according to language similarities D) Nomadic peoples were given control of their lands
 
Answer & Explanation Answer: A) Ethnic groups were each given their own country

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2377
Q:

The International Human Rights Convention adopted by the United Nations in 1990 relates to

A) Children B) Dasabled
C) Stateless Persons D) Migrant workers
 
Answer & Explanation Answer: A) Children

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2377
Q:

Incapable of being seen through

A) Transparant B) Ductile
C) Opaque D) Portable
 
Answer & Explanation Answer: C) Opaque

Explanation:

Incapable of being seen through is Opaque in nature.

Report Error

View Answer Report Error Discuss

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

1 2377
Q:

Which country blocked wikipedia in all languages?

A) China B) Japan
C) India D) North Korea
 
Answer & Explanation Answer: A) China

Explanation:

China blocked wikipedia in all languages recently in May 2019.

Report Error

View Answer Report Error Discuss

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

5 2377