Questions

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 2727
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:

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

Which is an example of a complex sentence?

A) The cricket match was cancelled, because it was raining. B) My Dad laughed when I told a joke
C) He sang and she danced. D) All of the above
 
Answer & Explanation Answer: A) The cricket match was cancelled, because it was raining.

Explanation:

A complex sentence is a sentence that contains an independent clause and one or more dependent clauses.

If two clauses are connected with a coordinating conjunction, it's a compound sentence.

If two clauses are connected with a subordinating conjunction, it's a complex sentence.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

0 2725
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:

what are the hardware interrupts?

Answer

TRAP, RST7.5, RST6.5, RST5.5, INTR.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2724
Q:

Synchronous motor can operate at

A) Lagging power factor only B) Unity power factor only
C) Leading power factor only D) At any power factor
 
Answer & Explanation Answer: D) At any power factor

Explanation:

synchronous motor can operate at lag lead and unity power factor also why because it is mainly depends on excitation

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: CAT , GATE , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2724
Q:

The most abundant gas in the atmosphere is

A) Nitrogen B) Argon
C) Oxygen D) Helium
 
Answer & Explanation Answer: A) Nitrogen

Explanation:

The atmosphere is a mixture of several gases. Nitrogen is the most abundant gas in the atmoshere and oxygen is next to it. It is 78% in the atmosphere and 21% is oxygen. Remaining 1% is all other gases like argon, hydrogen, neon, etc...

Report Error

View Answer Report Error Discuss

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

5 2724