Questions

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:

Project Management - Introduction

What is Portfolio Management?

Answer

A Portfolio is a collection of projects or programs and other work that are grouped together to facilitate effective management of that work to meet strategic business objectives.

Report Error

View answer Workspace Report Error Discuss

0 2380
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:

During the process of protein synthesis, each trna carries one

A) amino acid B) nucleotide
C) fatty acid D) nucleic acis
 
Answer & Explanation Answer: A) amino acid

Explanation:

During protein synthesis process, each tRNA carries one aminoacid for protein synthesis to the ribosomes.

Report Error

View Answer Report Error Discuss

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

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

The official currency of United Kingdom -

A) Pound Sterling B) Renminbi
C) Euro D) Dollar
 
Answer & Explanation Answer: A) Pound Sterling

Explanation:

Pound Sterling is the official currency of United Kingdom.

 

-> Renminbi is the currency of China.

-> Euro is the currency of 19 countries like Spain, Austria, Finland, Italy, Germany, Greece, Belgium, etc...

-> Dollar is the currency of United States.

Report Error

View Answer Report Error Discuss

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

4 2378
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
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