Questions

Q:

Is yeast a fungus or bacteria?

Answer

Yeast belongs to members of the Kingdom Fungi.


 


Yeast are single-celled microorganisms that are classified, along with molds and mushrooms in Fungi family. 


 


Yeasts are evolutionally diverse and are therefore classified into two separate phyla, Ascomycota or sac fungi and Basidiomycota or higher fungi, that together form the subkingdom Dikarya.

Report Error

View answer Workspace Report Error Discuss

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

2 2728
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:

Where are chromatids found in a cell?

A) Anaphase B) Metaphase
C) Prophase D) None of the above
 
Answer & Explanation Answer: B) Metaphase

Explanation:

A chromatid is one copy of a newly copied chromosome which is still joined to the original chromosome by a single centromere.

The two identical copies—each forming one half of the replicated chromosome are called chromatids.

Chromonema is the fibre-like structure in prophase in the primary stage of DNA condensation. In metaphase, they are called chromatids.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

1 2726
Q:

Fat is completely digested in the

A) small intestine B) mouth
C) large intestine D) stomach
 
Answer & Explanation Answer: A) small intestine

Explanation:

Fat is completely digested in the small intestine of the body.

Report Error

View Answer Report Error Discuss

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

4 2726
Q:

India's longest rail-road bridge #Bogibeel Bridge has built over which river?

A) Brahmaputra B) Ganga
C) Yamuna D) Godavari
 
Answer & Explanation Answer: A) Brahmaputra

Explanation:

Bogibeel bridge ( 4940 m ) is a combined road and rail bridge over the Brahmaputra river in the north eastern Indian state of Assam between Dhemaji district and Dibrugarh district.

Report Error

View Answer Report Error Discuss

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

7 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