Questions

Q:

Which of the following pair is matched correctly?

A) Bharatanatyam - Andhra Pradesh B) Kuchipudi - Madhya Pradesh
C) Kathakali - Kerala D) Kathak - Tamil Nadu
 
Answer & Explanation Answer: C) Kathakali - Kerala

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture
Exam Prep: Bank Exams

15 2423
Q:

Study of Life in outer space is known as

A) Endobiology B) Neobiology
C) Exobiology D) Intrabiology
 
Answer & Explanation Answer: C) Exobiology

Explanation:

Study of Life in outer space or search of life external to Earth is known as Exobiology.

Report Error

View Answer Report Error Discuss

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

1 2422
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 2422
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 credit of inventing the television goes to

A) Philo Farnsworth B) John Logie Baird
C) Charles Francis Jenkins D) None of the above
 
Answer & Explanation Answer: A) Philo Farnsworth

Explanation:

The credit of inventing the television goes to Philo Farnsworth. Electronic television was first successfully demonstrated in San Francisco on Sept. 7, 1927.

 

The_credit_of_inventing_the_television_goes_to1549279715.jpg image

Report Error

View Answer Report Error Discuss

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

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:

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:

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