Questions

Q:

What place is designated as 0 degrees longitude?

A) Greenwich B) Prime meridian
C) Tibet D) Norway
 
Answer & Explanation Answer: A) Greenwich

Explanation:

The place which is designated as 0 degrees longitude is Greenwich, England.

Report Error

View Answer Report Error Discuss

1 2458
Q:

Who was the first to sail round the world ?

A) Francis Drake B) Columbus
C) Magellan D) Vasco da Gama
 
Answer & Explanation Answer: C) Magellan

Explanation:

Magellan was a Portuguese sailor who was the first to sail round the world.

Report Error

View Answer Report Error Discuss

Filed Under: World History

1 2457
Q:

Which of the statements given below are correct?

 

A) Roger Federer won the Tennis 2017 French Open Men's Singles.

B) In 2018 IPL auctions, Rajasthan Royals retained Steve Smith.

C) Serena Williams won the Tennis 2017 French Open Women's Singles.

 

A) Only B B) B and C
C) A and B D) A, B and C
 
Answer & Explanation Answer: A) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 2457
Q:

Which structure is not part of the Endomembrane System?

A) Chloroplast B) Plasma membrane
C) Nuclear envelope D) Golgi apparatus
 
Answer & Explanation Answer: A) Chloroplast

Explanation:

The endomembrane system is composed of the different membranes that are suspended in the cytoplasm within a eukaryotic cell. These membranes divide the cell into functional and structural compartments or organelles. In eukaryotes, the organelles of the endomembrane system include the nuclear membrane, the endoplasmic reticulum, the Golgi apparatus, lysosomes, vesicles, endosomes and the cell membrane, among others.

Report Error

View Answer Report Error Discuss

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

2 2457
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2456
Q:

What was the first book ever written?

Answer

The first written story that has come down to us is The Epic of Gilgamesh.


It is a mythologized account of a historical figure, Gilgamesh, a ruler of the Sumerian city-state of Uruk, believed to have ruled sometime between 2700-2500 BC.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian History Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

19 2453
Q:

What is consumption disease in the 19th century?

A) Tuberculosis B) Paralysis
C) Plague D) Cholera
 
Answer & Explanation Answer: A) Tuberculosis

Explanation:

Tuberculosis (TB) was the leading cause of death in the United States and one of the most feared diseases in the world during the 19th and early 20th centuries.

Formerly known as Consumption diseases because many types of lung diseases were lumped under the term 'consumption'. Lung cancer and bronchitis were examples.

Report Error

View Answer Report Error Discuss

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

15 2452
Q:

What is the difference between real money & nominal money?

Answer

Nominal money relates more to it's measure of counting - so nominal figure of what is written on bill, while "real" relates more to it's purchasing power (usually between some periods of time). For instance 100 units in nominal could buy 2 units of good in 1950 and 1 unit of good in 2005, at the same time real value of this 100 nominal units are 100 real units in 1950 and 50 real units in 2005.


Same is with GDP. In nominal it can rise due to inflation while it can stay the same or even decrease in real value.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

2 2452