Questions

Q:

A genus can best be defined as

A) a taxon composed of one or more species and a classification level lying below family B) a taxon composed of families
C) the most specific taxon D) a taxon comprised of classes
 
Answer & Explanation Answer: A) a taxon composed of one or more species and a classification level lying below family

Explanation:

A genus can best be defined as a taxon composed of one or more species and a classification level lying below family.

Report Error

View Answer Report Error Discuss

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

1 2756
Q:

Refractive Index of glass with respect to water is

A) 4/3 B) 9/8
C) 2/3 D) 8/9
 
Answer & Explanation Answer: D) 8/9

Explanation:

Refractive Index of glass with respect to water can be calculated by 

(Refractive Index of glass with respect to air) × (1/Refractive Index of water with respect to air)

 

We know that,

Refractive Index of glass with respect to air = 4/3

Refractive index of water with respect to air = 3/2

 

Hence, Refractive Index of glass with respect to water = (4/3) x (2/3) = 8/9.

Report Error

View Answer Report Error Discuss

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

4 2756
Q:

Who is the new president and CEO of Nokia?

Answer

Rajeev Suri

Report Error

View answer Workspace Report Error Discuss

2 2756
Q:

What is one example of a closed economy?

A) Brazil B) China
C) Pakistan D) India
 
Answer & Explanation Answer: A) Brazil

Explanation:

Brazil is one example of a closed economy in the given options. 

A closed economy is one that has no trade activity with outside economies. A closed economy is self-sufficient, which means no imports come into the country and no exports leave the country. A closed economy's intent is to provide domestic consumers with everything they need from within the country's borders.

Report Error

View Answer Report Error Discuss

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

1 2756
Q:

Which statement regarding the era of Reconstruction is FALSE?

A) the 14th Amendment made African-Americans citizens of the U.S. B) the 13th Amendment outlawed slavery in all American states
C) federal law was changed to abolish slavery in states where it still existed D) state laws and customs upheld the constitutional amendments
 
Answer & Explanation Answer: D) state laws and customs upheld the constitutional amendments

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2755
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 2755
Q:

Which chemical bond most likely stores the most energy?

A) Single bond B) Double bond
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) Double bond

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2755
Q:

Which statement about subatomic particles is not true?

A) Protons and neutrons have the same charge B) Protons and electrons have the opposite charhes
C) Protons and neutrons have almost the same mass D) All of the above
 
Answer & Explanation Answer: A) Protons and neutrons have the same charge

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2754