Questions

Q:

The rate of flow of electric charge is measured in

A) ampere B) coulomb
C) ampere/coulomb D) ampere-coulomb
 
Answer & Explanation Answer: A) ampere

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2700
Q:

What is the purpose of balancing chemical equations?

A) law of conservation of energy B) law of conservation of mass
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) law of conservation of mass

Explanation:

The main purpose of balancing chemical equations is to make the mass of reactants is equal to mass of products obtained after the reaction. Hence, to make law of conservation of mass is purpose of balancing chemica equations.

Report Error

View Answer Report Error Discuss

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

1 2700
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 2699
Q:

What Is EFT?

Answer

Exchange Traded Funds (ETFs) are a relatively new phenomenon and are gaining popularity rapidly. This post outlines the key features of an ETF.


ETFs are like mutual funds because they hold an underlying asset like stocks, debt, commodities future contracts etc. If you are new to the concept of an ETF, think of it as a mutual fund, and build your understanding from thereon. An example of an ETF is the SBI Gold ETF, which holds physical gold as its underlying asset.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

1 2698
Q:

What is virtual path?

Answer

Along any transmission path from a given source to a given destination, a group of virtual circuits can be grouped together into what is called path.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2698
Q:

Light travels fastest in

A) Air B) Water
C) Glass D) Diamond
 
Answer & Explanation Answer: A) Air

Explanation:

Light travels fastest in Vacuum. The fastest thing in the whole universe is the speed of light in a vacuum like outer space. It is about 2.99 x 108 m/s. 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

3 2698
Q:

Service tax was introduced in India in the year :

A) 1994 B) 1993
C) 1992 D) 1991
 
Answer & Explanation Answer: A) 1994

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2697
Q:

Which of the following can be a cause of fratricide?

A) Clearance of Fires Error B) Fatal Navigation Error
C) Failures in the direct fire control plan D) All of the above
 
Answer & Explanation Answer: C) Failures in the direct fire control plan

Explanation:

Fratricide means the accidental killing of one's own forces in war.

 

Failures in the direct fire control plan can lead to be a cause of fratricide.

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 2697