Questions

Q:

Which composition is considered the unofficial national anthem of Austria?

Answer

Johann Strauss's on the Banks of the Beautiful Blue Danube

Report Error

View answer Workspace Report Error Discuss

8 2763
Q:

The brain and spinal cord are two components of the

A) Central nervous system B) Peripheral nervous system
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Central nervous system

Explanation:

The brain and spinal cord are two components of the Central nervous system which are responsible for sensory information.

Report Error

View Answer Report Error Discuss

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

3 2763
Q:

If you have a keyword with a low CTR, what can you expect?

Answer

A lower Quality Score on the Search Network.

Report Error

View answer Workspace Report Error Discuss

0 2762
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 2761
Q:

Which of the following is the lightest computer?

A) Desktop B) Tablet
C) Laptop D) Ultrabook
 
Answer & Explanation Answer: B) Tablet

Explanation:

The lightest computer is the tablet.

Report Error

View Answer Report Error Discuss

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

3 2761
Q:

Where is the Sahara desert located?

A) India B) Africa
C) America D) Iraq
 
Answer & Explanation Answer: B) Africa

Explanation:

The Sahara is the largest non-polar desert in the world. The Sahara is the largest hot desert and the third largest desert in the world after Antarctica and the Arctic.

The desert covers large sections of Algeria, Chad, Egypt, Libya, Mali, Mauritania, Morocco, Niger, Western Sahara, Sudan and Tunisia. It covers 9 million square kilometers (3,500,000 sq mi), amounting to 31% of Africa.

Its borders include the Mediterranean Sea to the north, the Atlantic Ocean to the west and the Red Sea to the east.

Report Error

View Answer Report Error Discuss

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

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

Which Ragamala depicts the martial arts by introducing horsemen in battle?

Answer

 Nataraga/ Natanarayana

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

45 2761