Questions

Q:

Who began public health and sanitation systems?

A) Mexicans B) Egyptians
C) Romans D) Chinese
 
Answer & Explanation Answer: C) Romans

Explanation:

Romans (753 BC - AD 410) began public health and sanitation systems.

 

Romans established the first public health and sanitation systems by building sewers and aqueducts.

Romans1531898190.jpg image

They also treated diseases with diet, exercise and meditation.

Report Error

View Answer Report Error Discuss

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

1 2404
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 2404
Q:

Capital of Belarus -

A) Praia B) Minsk
C) Cairo D) Vienna
 
Answer & Explanation Answer: B) Minsk

Explanation:

Belarus is a European country whose capital city is Minsk.

Report Error

View Answer Report Error Discuss

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

10 2403
Q:

Farsightedness is more properly called

A) Myopia B) Retinal detachment
C) Hyperopia D) Diabetes mellitus
 
Answer & Explanation Answer: C) Hyperopia

Explanation:

Farsightedness is more properly called Hyperopia.

Report Error

View Answer Report Error Discuss

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

0 2402
Q:

Which famous scientist unknowingly founded the field of spectroscopy?

A) Issac Newton B) Galileo
C) Graham Bell D) None of the above
 
Answer & Explanation Answer: A) Issac Newton

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2402
Q:

What is the difference between microprocessor and micro-controller?

Answer

In microprocessor more op-codes, few bit handling instrucitons. But in Microcontroller. fewer op-codes, more bit handling Instruction, and also it is defined as a device that includes micro processor, memory, & input / output signal lines on a single chip.


the basic architectual difference is that microcontroller has an programmable memory while it is not the case with mivroprocessors.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2402
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

Run out of steam

A) Lose impetus or enthusiasm.   B) To keep going even after losing all energy.
C) Have no more funds to proceed any further D) Build interest as you go along
 
Answer & Explanation Answer: A) Lose impetus or enthusiasm.  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2402
Q:

The Rio Olympics have been started in 2016 was

A) 5th August B) 6th August
C) 4th August D) 3rd August
 
Answer & Explanation Answer: A) 5th August

Explanation:

Rio Olympics were held in  Rio de Janeiro, Brazil, from 5 August to 21 August 2016.

  • Athletes : 11303
  • Countries : 207
  • Events : 306

 

Report Error

View Answer Report Error Discuss

Filed Under: Sports

5 2401