Questions

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 2334
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 2334
Q:

Select the synonym of
troll

A) spruce B) suave
C) gnome D) dapper
 
Answer & Explanation Answer: C) gnome

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT

2 2334
Q:

What is the heat generated (in J) in a heating element of resistance 900 Ω when a current of 0.3 A passes through it for 10 seconds?

A) 2700 B) 810
C) 405 D) 1350
 
Answer & Explanation Answer: B) 810

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2333
Q:

Forces of attraction limit the motion of particles most in solids.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

We know that, solids have definite shapes and definite volumes, whereas liquids have definite volumes but indefinite shapes and coming to gases it has indefinite volumes and indefinite shapes.


 


Hence, only in solids, the forces of attraction limit the motion of particles.

Report Error

View Answer Workspace Report Error Discuss

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

1 2333
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 2332
Q:

What is a drawback of MVT?

Answer

It does not have the features like



  1. ability to support multiple processors

  2. virtual storage

  3. source level debugging

Report Error

View answer Workspace Report Error Discuss

0 2331
Q:

The purpose of safety stock is to

A) eliminate the possibility of a stockout B) control the likelihood of a stockout due to the variability of demand during lead time
C) replace failed units with good ones D) eliminate the likelihood of a stockout due to erroneous inventory tally
 
Answer & Explanation Answer: B) control the likelihood of a stockout due to the variability of demand during lead time

Explanation:

The purpose of safety stock is to control the likelihood of a stockout due to the variability of demand during lead time. Stockouts contribute to the direct loss of any type of business.

Report Error

View Answer Report Error Discuss

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

4 2331