Questions

Q:

In the following question, some part of the sentence may have errors. Find out which part of the sentence has an error and select the appropriate option. If a sentence is free from error, select 'No Error'.

 

She is walking (1)/ in the park (2)/ since morning. (3)/ No error (4)

 

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: A) 1

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

0 2407
Q:

How long is your TABC certification valid?

A) 1 year B) 2 years
C) 4 years D) 6 months
 
Answer & Explanation Answer: B) 2 years

Explanation:

TABC stands for Texas Alcoholic Beverage Commission. The Texas Alcoholic Beverage Commission regulates the sales, taxation, production, trade, and advertising of alcoholic beverages in Texas. Alcohol Seller/server Training regulated by this regulatory body is also called TABC Certification. It makes the rules the rest of us have to follow, and if you want to get a job serving alcohol in Texas, getting TABC certified is your first step.

Report Error

View Answer Report Error Discuss

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

1 2406
Q:

Which of the following is a healthy fat?

A) polyunsaturated fat B) enriched fat
C) trans fat D) saturated fat
 
Answer & Explanation Answer: A) polyunsaturated fat

Explanation:

Polyunsaturated fats are healthy fats whcih we can get from eating greeny leaf vegetables, fish and some seeds that are helpful in brain functioning, nutrient rich blood, hair growth, etc...

Report Error

View Answer Report Error Discuss

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

4 2406
Q:

The pH value of a sample of multiple-distilled water is

A) zero B) 14
C) very near to zero D) very near to seven
 
Answer & Explanation Answer: D) very near to seven

Explanation:

Water  is  neutral  and  has  a  pH value  of  7  and  because  here it  is multiple distilled water, it would be very near to seven

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

3 2406
Q:

The latitude which passes through Sikkim also passes through _____.

A) Haryana B) Rajasthan
C) Uttarakhand D) Himachal Pradesh
 
Answer & Explanation Answer: B) Rajasthan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2406
Q:

A persistent infection is one in which

A) viral replication is unusually slow B) the disease process occurs gradually over a long period
C) the virus remains in equilibrium with the host without causing a disease D) All of the above
 
Answer & Explanation Answer: B) the disease process occurs gradually over a long period

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2406
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 2406
Q:

Condition of decreased oxygen in the blood

A) Hematemesis B) Hypercapnia
C) Hemoptysis D) Hypoxemia
 
Answer & Explanation Answer: D) Hypoxemia

Explanation:

Oxygen deficiency or decreased oxygen levels in the blood is a condition known as Hypoxemia.

 

Hypercapnia means High carbon dioxide levels in the blood.

Report Error

View Answer Report Error Discuss

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

1 2405