Questions

Q:

The pH of pure water is nearly 7.It will increase on the addition of

A) ammonia B) cane sugar
C) common salt D) hydrochloric acid
 
Answer & Explanation Answer: A) ammonia

Explanation:

Ammonia is a base. One adding ammonia to water,the resulting solution will become basic. pH of an alkaline solution is 7. So the pH will increase

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2835
Q:

With which country India exchanged its border maps?

A) China B) Sri Lanka
C) Pakistan D) Bangladesh
 
Answer & Explanation Answer: D) Bangladesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2832
Q:

What methodologies have you used to develop test cases?

Answer

 I have used following 4 types of Methodologies: 


 


1. Boundary value analysis   


2. Equivalence partitioning   


3. Error guessing   


4. Cause effect graphing

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2832
Q:

The concept of due process refers to

A) banking B) justice
C) politics D) economy
 
Answer & Explanation Answer: B) justice

Explanation:

Due process is the legal requirement that the state must respect all legal rights that are owed to a person.

Therefore, due process refers to the criminal justice system operating within the bounds of the law.

Report Error

View Answer Report Error Discuss

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

2 2832
Q:

The combined gas law relates which of the following?

A) Volume & Temperature B) Temperature & Pressure
C) Volume & Pressure D) Volume, Temperature & Pressure
 
Answer & Explanation Answer: D) Volume, Temperature & Pressure

Explanation:

The combined gas law states that the ratio between the pressure-volume product and the temperature of a system remains constant.

 

Hence it depends on all the three Volume, Temperature & Pressure.

Report Error

View Answer Report Error Discuss

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

2 2831
Q:

What is BGP ?

Answer

It is a protocol used to advertise the set of networks that can be reached with in an autonomous system. BGP enables this information to be shared with the autonomous system. 

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2831
Q:

Which of the following industries most closely approximates pure competition?

A) Steel B) Clothing
C) Eectronic D) Agriculture
 
Answer & Explanation Answer: D) Agriculture

Explanation:

Agriculture would be a good example of a purely competitive industry.

Report Error

View Answer Report Error Discuss

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

4 2830
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 2830