Questions

Q:

Which statement about general education policy is most accurate?

A) It is set by multiple levels of the government. B) It is determined by local school boards.
C) It is controlled only by the federal government. D) It provides its funding at the state level.
 
Answer & Explanation Answer: A) It is set by multiple levels of the government.

Explanation:

General education policy is set by multiple levels of the government like Federal, state and local governments. 

Report Error

View Answer Report Error Discuss

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

1 2380
Q:

What is the Busiest Metro Network in the world?

Answer

The Moscow Metro in Russia carries 8-9 million passengers each day. By comparison, the New york City Subway, USA carries 4.5 million people each day and the London underground , UK, carries just over 3 million.

Report Error

View answer Workspace Report Error Discuss

4 2380
Q:

The talk test can be used to measure the

A) Speech frequency B) Exercise intensity
C) Loudness intensity D) None of the above
 
Answer & Explanation Answer: B) Exercise intensity

Explanation:

The talk test can be used to measure the Exercise intensity.

Report Error

View Answer Report Error Discuss

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

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

Which of the following processes is endothermic?

A) Melting of ice B) Mixing of potassium chloride with water
C) Photosynthesis D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The process which involves absorption of heat is endothermic.

Here given all the options are involving in absorption of heat. Hence, all the above are endithermic.

Report Error

View Answer Report Error Discuss

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

2 2379
Q:

Who started the construction of Colosseum in Rome ?

A) Nero B) Titus
C) Victor D) Vespasian
 
Answer & Explanation Answer: D) Vespasian

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

2 2379
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 2379
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