Questions

Q:

The given sentences, when properly sequenced, form a coherent paragraph. Each sentence is labelled with a letter. Choose the most logical order of the sentences from among the five given choices to construct a coherent paragraph keeping 1 as the first statement.

1) For first-time Indian travellers, stepping out of the airport in Singapore or Japan is a momentous, potentially mindset-changing experience.

A) But walk in a cramped gully in Delhi or even on the main road and everything that is not desirable inside, finds its way outside.

B) Public littering is a social issue that results in massive aesthetic, financial and health- related costs for India. It’s not as if we don’t value cleanliness. Our homes are the textbook definition of clean.

C) How does that compare with our paan- stained buses filled with peanut shells?

D) How can bustling cities packed with people be so spotless? As far as the eye can go, there is not a single piece of stray paper on the road or in public transport.

A) BCAD B) DCBA
C) DBCA D) ADBC
 
Answer & Explanation Answer: B) DCBA

Explanation:

The correct sequence is DCBA.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2374
Q:

When you need me, you throw me away. But when you're done with me, you bring me back. What am I ?

Answer

An Anchor.

Report Error

View answer Workspace Report Error Discuss

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

10 2373
Q:

What would be the output of the following program?

/* sample.c */

main ( int argc, char **argv )

{

     argc = argc - (argc -1);

     printf ("%s", argv[argc - 1]);

}

Answer

C: \SAMPLE.EXE

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2373
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 2373
Q:

The International Human Rights Convention adopted by the United Nations in 1990 relates to

A) Children B) Dasabled
C) Stateless Persons D) Migrant workers
 
Answer & Explanation Answer: A) Children

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2373
Q:

What is Bull Market?

Answer

Bull market is that market where stock value are expected rise and people will have tendency to sell their stock so as to earn profit out of it. Thus sudden push from the suppliers will gradually niutalise the market.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

0 2372
Q:

The organs of the urinary system are

A) Kidney B) Urinary bladder
C) Ureter D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

the_organs_of_the_urinary_system_are1537338921.png image

 

The urinary system purpose in the human body is to eleminate the waste from the body. The urinary system is also called as Rena system. It consists of kidney, ureter, urinary bladder and urethra.

Report Error

View Answer Report Error Discuss

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

3 2372
Q:

Change in focal length of eye lens is caused by

A) ciliary muscles B) iris
C) pupil D) retina
 
Answer & Explanation Answer: A) ciliary muscles

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2372