Questions

Q:

For a thirsty person, drinking water serves to reduce

A) an instinct B) the set point
C) basal metabolic rate D) a drive
 
Answer & Explanation Answer: D) a drive

Explanation:

For a thirsty person, drinking water serves to reduce a drive.

Report Error

View Answer Report Error Discuss

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

1 2367
Q:

Who is the new governor of Andhra Pradesh 2019?

A) Anusuiya Uikey B) Kalraj Mishra
C) Anandiben Patel D) Biswa Bushan Harichandan
 
Answer & Explanation Answer: D) Biswa Bushan Harichandan

Explanation:

the_new_governor_of_Andhra_Pradesh1563532575.jpg image

The new governor of Andhra Pradesh is Biswa Bushan Harichandan. He is a senior BJP leader and will succeed ESL Narasimhan, who had held the gubernatorial post in various states for last 13 years which includes 10 years in Andhra Pradesh.

Report Error

View Answer Report Error Discuss

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

2 2366
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 2366
Q:

What is cache-coherency?

Answer

In a multiprocessor system there exist several caches each may containing a copy of same variable A. Then a change in one cache should immediately be reflected in all other caches this process of maintaining the same value of a data in all the caches s called cache-coherency.

Report Error

View answer Workspace Report Error Discuss

1 2366
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 2365
Q:

Waksman got the noble prize for the discovery of

A) Streptomycin B) Chloromycetin
C) Pencillin D) Neomycin
 
Answer & Explanation Answer: A) Streptomycin

Explanation:

In 1952, Waksman was awarded the Nobel Prize in Physiology or Medicine in recognition "for his discovery of streptomycin," the first antibiotic active against tuberculosis.

Report Error

View Answer Report Error Discuss

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

2 2364
Q:

Which among the following is not correctly matched?

A) Parachute: W H carothers B) Barometer: Torricelli
C) Cells: Robert Hooke D) X- Ray: W Roentgen
 
Answer & Explanation Answer: A) Parachute: W H carothers

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2363
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 2363