Questions

Q:

Strength of concrete increases with

A) increase in fineness of cement B) decrease in size of aggregate
C) increase in water cement ratio D) decrease in curing time
 
Answer & Explanation Answer: C) increase in water cement ratio

Explanation:

Strength of concrete increases with increase in water cement ratio as the strength of the cement is directly proportional to water cement ratio.

Report Error

View Answer Report Error Discuss

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

2 2757
Q:

Which country won the Cricket World cup in 2011

A) Sri Lanka B) Australia
C) Pakistan D) India
 
Answer & Explanation Answer: D) India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

2 2757
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 2756
Q:

Genes are made of 

A) Carbohydrates B) Proteins
C) Fats D) Nucleotides
 
Answer & Explanation Answer: D) Nucleotides

Explanation:

Genes : The DNA is the genetic material. The DNA is made of several nucleotides. A nucleotide means, one nitrogenous base one sugar molecule and a phosphate molecule. These nucleotides occur in sequences and several nucleotides form one Gene ( a functional mgene is called a cistron)

Report Error

View Answer Report Error Discuss

Filed Under: Biology

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

Who is the new president and CEO of Nokia?

Answer

Rajeev Suri

Report Error

View answer Workspace Report Error Discuss

2 2756
Q:

Resistivity of a wire depends on 

A) Length B) Area of cross section
C) Material D) All of above
 
Answer & Explanation Answer: C) Material

Explanation:

The resistivity of wire or the metal conductor is depend on the number density of free electrons in the conductor. so its mainly depends on nature of the material

Report Error

View Answer Report Error Discuss

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

0 2756
Q:

How many Species go Extinct Every Day?

Answer

About 150 - 200 species of plant, insect, bird and mammal become extinct every day or 24 hrs.


This is not an accurate but an estimation by U.N. Convention on Biological Diversity and Global Extinction Rates. It is also said that current extinctions were 'up to 100 times higher than the background rate.'

Report Error

View answer Workspace Report Error Discuss

Subject: General Science Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

6 2756