Questions

Q:

In 8085 which is called as High order / Low order Rigister?

Answer

Flag is called as Low order rigister & Accumulator is called as High order Rigister.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2728
Q:

IQTA system abolished by

A) Illtumish B) Bin Tughluq
C) Alauddin Khalji D) None of the above
 
Answer & Explanation Answer: C) Alauddin Khalji

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2727
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 2726
Q:

National Science Centre is located at

A) New Delhi B) Pune
C) Bangalore D) Hyderabad
 
Answer & Explanation Answer: A) New Delhi

Explanation:

National Science Centre is located at New Delhi.

national_science_centre_is_located_at1553943841.jpg image

Report Error

View Answer Report Error Discuss

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

0 2726
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

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

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2725
Q:

Which of the following Articles of Indian Constitution guarantees freedom to press?

A) Article 16 B) Article 19
C) Article 22 D) Article 31
 
Answer & Explanation Answer: B) Article 19

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

1 2725
Q:

Middle latitude cyclones are fueled by? 

A) air high in the atmosphere B) polar continental air masses
C) energy from falling precipitation D) All of the above
 
Answer & Explanation Answer: A) air high in the atmosphere

Explanation:

Extratropical cyclones, sometimes called mid-latitude cyclones or wave cyclones, are low-pressure areas which, along with the anticyclones of high-pressure areas, drive the weather over much of the Earth.

 

Middle latitude cyclones are fueled by air high in the atmosphere.

Report Error

View Answer Report Error Discuss

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

2 2724
Q:

Biogeochemical cycles are crucial to ecosystem function because

A) they keep the planet warm enough for living things to survive B) energy flows through ecosystems in one direction only and is eventually dissipated as heat
C) they prevent catastrophic extinctions D) nutrients and other life-sustaining molecules are in limited supply and must be continually recycled
 
Answer & Explanation Answer: D) nutrients and other life-sustaining molecules are in limited supply and must be continually recycled

Explanation:

Biogeochemical cycles are crucial to ecosystem function because ::

 

1. Chemical elements are available in only limited amounts and must be recycled.

2. Nutrients and other life-sustaining molecules are in limited supply and must be continually recycled.

Report Error

View Answer Report Error Discuss

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

0 2724