Questions

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

Which program requires concurrent enrollment?

A) Advanced Placement B) Articulated Credit
C) International Baccalaureate D) Dual Credit
 
Answer & Explanation Answer: D) Dual Credit

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2470
Q:

Stars are held together by

A) Gravitational forces B) Electrical forces
C) Ionic forces D) Magnetic forces
 
Answer & Explanation Answer: A) Gravitational forces

Explanation:

A star is a self luminous astronomical object and shines due to internal radiation from the enrgy sources. All stars are held together by their own gravity called Gravitational force.

Stars_are_held_together_by1560151249.jpg image

Report Error

View Answer Report Error Discuss

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

5 2470
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 2470
Q:

In R-DBMS, the data is organized in the form of _____.

A) Hierarchical structure B) Tabular structure
C) Linked structure D) All of the above
 
Answer & Explanation Answer: B) Tabular structure

Explanation:

Data is organized in the form of row and columns, thus it is in tabular structure.

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification

5 2469
Q:

Which legendary cricketer has made his debut as a commentator in the opening match of World Cup 2019?

A) Sachin Tendulkar B) Saurav Ganguly
C) Virendar Sehwag D) Rahul Dravid
 
Answer & Explanation Answer: A) Sachin Tendulkar

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2469
Q:

I come in different colors and shapes. Some parts of me are curvy some are straight. You can put me anywhere you like but there is only one right place for me. What am I?

Answer

A Jig saw puzzle pieces are in different colors which have different shapes. 


You can put it anywhere you like but there is only one right place for it to be fit in it.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , CAT , Bank Exams , AIEEE
Job Role: IT Trainer , Bank PO , Bank Clerk , Analyst

3 2469
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 2468