Questions

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

What can you break but not touch?

A) Mirror B) Word
C) Promise D) All of the above
 
Answer & Explanation Answer: C) Promise

Explanation:

A promise. 

 

The Promise made to somebody by you can be break but you cannot touch it.

Report Error

View Answer Report Error Discuss

4 2340
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 2339
Q:

What was the purpose of the double v campaign?

Answer

The Double V Campaign was used in World War II. The purpose of the double v campaign is to fight for victory and ending segregation at home.


It was aimed at African-Americans, and it first appeared in an African-American newspaper, the Pittsburgh Courier, in 1942. The Double V Campaign worked to have a victory over racism abroad and racism in the United States.

It stood so it gave a chance for Black Americans to fight in the war so they could achieve Victory at Home and Abroad- (Civil Rights then the war in the Atlantic and Pacific).

Report Error

View answer Workspace Report Error Discuss

Subject: World History Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2339
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 2338
Q:

Which gas is used in tube light?

A) Oxygen B) Hydrogen
C) Neon D) Nitric oxide
 
Answer & Explanation Answer: C) Neon

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2338
Q:

The animals in which the body cavity is absent are known as __________.

A) Coelomates B) Wild
C) Pseudocoelomates D) Acoelomates
 
Answer & Explanation Answer: D) Acoelomates

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

5 2337
Q:

Which occurs during transcription?

A) Proteins are produced B) Ribosomes produces
C) DNA information is copied to RNA D) All of the above
 
Answer & Explanation Answer: C) DNA information is copied to RNA

Explanation:

Transcription is the process of copying the genetic material or information that is the DNA to messenger RNA (mRNA.

 

transcription_translation1531736868.jpg image

Report Error

View Answer Report Error Discuss

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

4 2336