Questions

Q:

In which body cavities are the lungs located

A) Pelvic cavity B) Thoracic cavity
C) Abdominal cavity D) Body cavity
 
Answer & Explanation Answer: B) Thoracic cavity

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2205
Q:

Write a c program for merge sort.

Answer

#include
#define MAX 50

void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);

int main(){
  
    int merge[MAX],i,n;

    printf("Enter the total number of elements: ");
    scanf("%d",&n);

    printf("Enter the elements which to be sort: ");
    for(i=0;i<n;i++){
         scanf("%d",&merge[i]);
    }

    partition(merge,0,n-1);

    printf("After merge sorting elements are: ");
    for(i=0;i<n;i++){
         printf("%d ",merge[i]);
    }

   return 0;
}

void partition(int arr[],int low,int high){

    int mid;

    if(low<high){
         mid=(low+high)/2;
         partition(arr,low,mid);
         partition(arr,mid+1,high);
         mergeSort(arr,low,mid,high);
    }
}

void mergeSort(int arr[],int low,int mid,int high){

    int i,m,k,l,temp[MAX];

    l=low;
    i=low;
    m=mid+1;

    while((l<=mid)&&(m<=high)){

         if(arr[l]<=arr[m]){
             temp[i]=arr[l];
             l++;
         }
         else{
             temp[i]=arr[m];
             m++;
         }
         i++;
    }

    if(l>mid){
         for(k=m;k<=high;k++){
             temp[i]=arr[k];
             i++;
         }
    }
    else{
         for(k=l;k<=mid;k++){
             temp[i]=arr[k];
             i++;
         }
    }
  
    for(k=low;k<=high;k++){
         arr[k]=temp[k];
    }
}


Sample output:

Enter the total number of elements: 5
Enter the elements which to be sort: 2 5 0 9 1
After merge sorting elements are: 0 1 2 5 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2205
Q:

Though the countries of South - West Asia have abundant power resources, they have not developed major industries mainly because

A) They do not have raw materials B) They do not have a large market
C) They do not have skilled labour D) They do not have capital
 
Answer & Explanation Answer: A) They do not have raw materials

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

1 2204
Q:

The term 'degrees of newness' is associated with

A) total years of business experience B) degree of design change
C) average length of time on the job D) average age of employees
 
Answer & Explanation Answer: B) degree of design change

Explanation:

The term 'degrees of newness' is associated with degree of design change. How much the design changes that much newness comes in it.

Report Error

View Answer Report Error Discuss

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

3 2204
Q:

Which of the following is true of enzymes?

A) Enzymes lowers the activation energy for the chemical reaction B) Enzymes speed up the rate of a chemical reaction
C) Both A & B D) Neither A nor B
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Enzymes are macromolecular biological catalysts. Enzymes accelerate chemical reactions. The molecules upon which enzymes may act are called substrates and the enzyme converts the substrates into different molecules known as products.

Report Error

View Answer Report Error Discuss

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

5 2204
Q:

GDP tends to overstate economic well-being because it takes into account

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Economy Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2203
Q:

Someone who has consumed a lot of alcohol

A) Is never to blame for being sexually assaulted B) May need help getting out of a potentially dangerous situation
C) Is not capable of giving true consent D) All of the above
 
Answer & Explanation Answer: C) Is not capable of giving true consent

Explanation:

Someone_who_has_consumed_a_lot_of_alcohol1537254995.jpg image

 

Someone who has consumed a lot of alcohol were not capable of giving true consent.

Report Error

View Answer Report Error Discuss

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

1 2203
Q:

Project Management - Introduction

What is a Project? What are its Characteristics?

Answer

A Project is a temporary endeavour undertaken to create a unique product, service or result.


Characteristics:


1.Temporary 


    Temporary means that every project has a definite beginning and a definite end.


2. Unique Products, Services or Results


   Uniqueness is an important characteristic of project deliverables. For example, many thousands of office buildings have been developed, but each individual facility is unique - different owner, different design, different location, different contractors, and so on.


3. Progressive Elaboration


   Progressive elaboration means developing in steps, and continuing by increments . For example, the project scope will be broadly described early in the project and made more explicit and detailed as the project team develops a better and more complete understanding of the objectives and deliverables.

Report Error

View answer Workspace Report Error Discuss

0 2202