Questions

Q:

The fall of the Czar in Russia is known as _______

A) March Revolution B) October Revolution
C) February Revolution D) None of these
 
Answer & Explanation Answer: C) February Revolution

Explanation:

The fall of the Czar is known as February Revolution because, according to the old Russian calender, it occured on 27 February 1917.

Report Error

View Answer Report Error Discuss

Filed Under: World History

3 2382
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 2382
Q:

I am the first on earth, the second in heaven. I appear twice in a week, though you can only see me once in a year. What am I?

Answer

It is the letter 'e', that is the first on earth, the second in heaven.


It appears twice in a week, that appears once in a year.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams
Job Role: Bank Clerk , Bank PO

11 2381
Q:

Is boiling water a chemical change?

Answer

No. Boiling water is not a chemical change. Because in this process it doesn't loss its properties. It just changes its state i.e, from liquid state to gaseous.


 


Hence, Boiling water is a Physiacl change and not a chemical change.

Report Error

View answer Workspace Report Error Discuss

0 2381
Q:

Which must be true for metamorphism to occur?

A) The grain size must become smaller B) The process must take place underwater
C) The parent rock must be in solid form D) The parent rock must be igneous
 
Answer & Explanation Answer: C) The parent rock must be in solid form

Explanation:

Metamorphism is the method of changing the structure of a rock by using heat and temperature.

Hence, for this to happen the parent rock must be in solid form only. Therefore, option C) is true.

Report Error

View Answer Report Error Discuss

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

1 2381
Q:

What gas makes up most of the atmosphere?

A) Oxygen B) Helium
C) Nitrogen D) Carbondioxide
 
Answer & Explanation Answer: C) Nitrogen

Explanation:

Our atmosphere is made up of

78% Nitrogen,

21% Oxygen and

1% all other gases like argon, carbon dioxide, neon, and helium.

 

So, Nitrogen makes up the majority of our atmosphere.

Report Error

View Answer Report Error Discuss

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

6 2380
Q:

The bankruptcy of which company initiated the Panic of 1873?

A) Republic Steel Company B) Jay Cooke & Company
C) Standard Oil Company D) Century Building Society
 
Answer & Explanation Answer: B) Jay Cooke & Company

Explanation:

Jay Cooke & Company, a major component of the United States banking establishment, found itself unable to market several million dollars in Northern Pacific Railway bonds in september 1873. Cooke's firm, like many others, had invested heavily in the railroads.

 

Hence, the bankruptcy of Jay Cooke & company initiated the Panic of 1873.

Report Error

View Answer Report Error Discuss

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

0 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