Questions

Q:

When is International Day of Non-Violence,recognized by the UN,observed on M.K.Gandhi's birthday is observed

A) December 11 B) November 29
C) October 2 D) Second wednesday of october
 
Answer & Explanation Answer: C) October 2

Explanation:
Report Error

View Answer Report Error Discuss

1 2749
Q:

Heat energy is transferred by conduction whenever molecules

A) collide each other B) means of photons
C) particles replaces there places D) All of the above
 
Answer & Explanation Answer: A) collide each other

Explanation:

Heat energy can be transferred by three major methods. They are 

 

1. Conduction,

2. Convection and

3. Radiation.

 

Conduction is the movement of heat through a substance by the collision of molecules

Convection occurs when particles with a lot of heat energy in a liquid or gas move and take the place of particles with less heat energy.

Radiation is the transfer of energy by means of photons in electromagnetic waves governed by the same laws. It occurs through a vacuum or any transparent medium.

Report Error

View Answer Report Error Discuss

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

1 2749
Q:

Which kind of energy is stored in a chemical bond?

A) Potential energy B) Kinetic energy
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Potential energy

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2749
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 2748
Q:

Which food item is a rich source of protein?

A) Yogurt B) Milk
C) Cheese D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Dairy products like milk, cheese and yogurt are rich source of protein as well as calcium also. 

Report Error

View Answer Report Error Discuss

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

2 2748
Q:

Farsightedness is more properly called

A) Myopia B) Retinal detachment
C) Hyperopia D) Diabetes mellitus
 
Answer & Explanation Answer: C) Hyperopia

Explanation:

Farsightedness is more properly called Hyperopia.

Report Error

View Answer Report Error Discuss

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

0 2747
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 2747
Q:

Who is the new president and CEO of Nokia?

Answer

Rajeev Suri

Report Error

View answer Workspace Report Error Discuss

2 2746