Questions

Q:

What is the world’s oldest surviving republic?

Answer

San Marino

Report Error

View answer Workspace Report Error Discuss

Subject: World History

5 2999
Q:

What animals eat both producers and consumers?

A) Herbivores B) Omnivores
C) Carnivores D) Tertiary consumers
 
Answer & Explanation Answer: B) Omnivores

Explanation:

Animals and people who eat both animals and plants i.e, both producers and consumers are called omnivores.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , GRE
Job Role: Analyst , Bank Clerk , Bank PO

12 2999
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,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=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2999
Q:

Who was appointed as NASSCOM chairman in April 2017 ?

A) C P. Gurnani B) Raman Roy
C) Smt. Singha D) None
 
Answer & Explanation Answer: B) Raman Roy

Explanation:

The National Association of Software and Services Companies (Nasscom) appointed Raman Roy (Managing Director of Quatrro Global Services) as its chairman for 2017-2018.

 Rishad Premji (Chief Strategy Officer (CSO), Wipro Limited) has been appointed Vice Chairman. Raman Roy has replaced Mr. CP Gurnani.

Report Error

View Answer Report Error Discuss

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

3 2998
Q:

Which subatomic particle has no charge?

A) electron B) neutron
C) proton D) All of the above
 
Answer & Explanation Answer: B) neutron

Explanation:

An atom is composed of three subatomic particles. They are ::

 

1) Electron (-vely charged particle)

2) Proton (+vely charged particle)

3) Neutron (No charge particle)

 

Hence, Neutron is the subatomic particle which has no charge.

Report Error

View Answer Report Error Discuss

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

2 2997
Q:

Lime mortar is generally made with

A) Hydraulic lime B) Quick lime
C) Fat lime D) Plain lime
 
Answer & Explanation Answer: A) Hydraulic lime

Explanation:

Lime mortar is generally made with Hydraulic lime.

Report Error

View Answer Report Error Discuss

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

2 2997
Q:

UNIVAC is

A) Universal Automatic Computer B) Universal Array Computer
C) Unvalued Automatic Computer D) Unique Automatic Computer
 
Answer & Explanation Answer: A) Universal Automatic Computer

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2997
Q:

What is the only chain we can eat ?

Answer

A food chain is the only chain we can eat.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: Bank Exams

3 2997