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

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2421
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

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

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2421
Q:

The preamble to the constitution does not specify providing for

A) economic equity B) domestic tranquility
C) common defense D) justice
 
Answer & Explanation Answer: A) economic equity

Explanation:

The preamble to the constitution does not specify providing for economic equity.

Report Error

View Answer Report Error Discuss

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

6 2421
Q:

Which of these did progressives support?

Answer

One of the thing that progressive support would be: Direct election of senators.


 


The progressive wanted this so they could the candidate based on the person and not the party.
Direct election of senators will make it easier for them to elect the person that represent their value for the position.

Report Error

View answer Workspace Report Error Discuss

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

4 2420
Q:

"Relief of the disabled and unemployable" is listed in the __________ list given in the Seventh Schedule in the Constitution of India.

A) Union B) State
C) Global D) Concurrent
 
Answer & Explanation Answer: B) State

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2420
Q:

Who said that lines of 'the ballot is stronger than bullet'?

A) Mahatma Gandhi B) Adolf Hitler
C) Abraham Lincolon D) Nelson Mandela
 
Answer & Explanation Answer: C) Abraham Lincolon

Explanation:

Abraham Lincolon was an American statesman and lawyer who served as the 16th President of the United States from March 1861 until his assassination in April 1865.

Who_said_that_lines_of_the_ballot_is_stronger_than_bullet1549088894.jpg image

Lincoln led the United States through the American Civil War—its bloodiest war and perhaps its greatest moral, constitutional, and political crisis.

Report Error

View Answer Report Error Discuss

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

2 2420
Q:

The production possibilities curve illustrates the basic principle that

A) if all the resources of an economy are in use, more of one good can be produced only if less of another good is produced. B) the production of more of any one good will in time require smaller and smaller sacrifices of other goods.
C) an economy will automatically obtain full employment of its resources. D) an economy's capacity to produce increases in proportion to its population size.
 
Answer & Explanation Answer: A) if all the resources of an economy are in use, more of one good can be produced only if less of another good is produced.

Explanation:

A graph that describes the maximum amount of one good that can be produced for every possible level of production of the other good is nothing but a production possibilities curve.

Report Error

View Answer Report Error Discuss

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

1 2420