Questions

Q:

In national income accounting, government purchases include

A) Federal B) Local
C) State D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

In national income accounting, government purchases by Local, State and Federal governments.

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

The first formed primary xylem elements are called ___________.

A) Metaxylem B) Protoxylem
C) Xylem fibres D) Xylem parenchyma
 
Answer & Explanation Answer: B) Protoxylem

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 2379
Q:

Which of the following is a healthy blood pressure level?

A) 120/80 B) 140/90
C) 135/75 D) 130/70
 
Answer & Explanation Answer: A) 120/80

Explanation:

A normal reading would be any blood pressure below 120/80 mm Hg and above 90/60 mm Hg in an adult. If you're in the normal range, no medical intervention is needed.

However, you should maintain a healthy lifestyle and healthy weight to help prevent hypertension from developing.

Report Error

View Answer Report Error Discuss

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

4 2379
Q:

Who is in the judicial branch?

Answer

Judicial branch is one among the three branches of the government. 


Supreme court, the magistrate (local) and municipal (city) courts are there in the judicial branch.


The Judicial branch interprets the laws.

Report Error

View answer Workspace Report Error Discuss

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

1 2379
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 2379
Q:

There is no reason (that life may exist) P (in great profusion) Q (why we should not be willing to think) R (in other worlds) S

The correct sequence should be

A) R S P Q B) P Q S R
C) R P Q S D) R Q S P
 
Answer & Explanation Answer: C) R P Q S

Explanation:

Since, the sentence starts talking about the reason; R will be the continuing statement as it goes with the flow of the statement. The continuing statement talks about the existing of life i.e. P. Thus, all other options are eliminated. The correct formation would be, ‘There is no reason why we should not be willing to think that life may exist in great profusion in other worlds.’

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2379
Q:

The oldest oil refinery in India is at

A) Haldia B) Digboi
C) Rajpur D) Noonmati
 
Answer & Explanation Answer: B) Digboi

Explanation:

Digboi, in Assam is where the oldest oil refinery in India. It was build in 1901.

Report Error

View Answer Report Error Discuss

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

3 2378
Q:

Which statement is true of all atoms that are anions?

A) The atom has more electrons than protons B) The atom has more protons than electrons
C) The atom has equal number of protons and electrons D) All of the above
 
Answer & Explanation Answer: A) The atom has more electrons than protons

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2378