Questions

Q:

Number of alary muscles in cockroach

A) 12 B) 12 pairs
C) 6 D) 24 pairs
 
Answer & Explanation Answer: B) 12 pairs

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2384
Q:

Select the antonym of
eternity

A) perpetuity B) yonder
C) aeon D) ephemeral
 
Answer & Explanation Answer: D) ephemeral

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2384
Q:

The 4th edition of "International Spice Conference" was held in

A) Hyderabad B) Kolkata
C) Kochi D) Pune
 
Answer & Explanation Answer: A) Hyderabad

Explanation:

The fourth edition is planned in the CITY OF PEARLS, the silicon valley of India, Hyderabad; the capital of Telangana, India.

Report Error

View Answer Report Error Discuss

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

0 2383
Q:

Cobalt 60 is used for cancer treatment it emmits which rays?

A) Alpha B) Beta
C) Gamma D) X rays
 
Answer & Explanation Answer: C) Gamma

Explanation:

Cobalt therapy or cobalt-60 therapy is the medical use of gamma rays from the radioisotope cobalt-60 to treat conditions such as cancer.

 

Cobalt 60 is a synthetic radioactive isotope of cobalt with a half-life of 5.2714 years. It is produced artificially in nuclear reactors.

Report Error

View Answer Report Error Discuss

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

4 2383
Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best express
the same sentence in Indirect/Direct speech.


The holy prophet said, " God helps those who help others."

A) The holy prophet said that God helped those who helped others. B) The holy prophet said that God helps those who help others.
C) The holy prophet said that God helps people who help others. D) The holy prophet said that God helps those people who help others.
 
Answer & Explanation Answer: B) The holy prophet said that God helps those who help others.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

2 2383
Q:

Explain the difference between fixed and flexible budgets ?

Answer

1. A fixed budget is established for a specific level of activity whereas flexible budget is prepared for various levels of activity.


2. Fixed budget cannot be changed after the period commences, whereas a flexible budget can be changed after the period commence.


3. Fixed budget is more suitable for fixed expenses whereas flexible budget takes both fixed as well as variable expenses in account.


4. Fixed budget includes only fixed costs, whereas a flexible budget includes fixed costs, variable costs and semi variable costs.


5. Fixed budget is mainly used in planning stage whereas flexible budget is used in controlling stage.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

1 2383
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 2382
Q:

Country With No Income Tax?

A) Kuwait B) Saudi Arabia
C) Qatar D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Here all the above given options are the countries with no income tax.

 

List of Countries With No Income Tax:

 

- Qatar

- Oman

- UAE

- Saudi Arabia

- Bahrain

- Kuwait

- Bermuda

- Cayman Islands

- Bahamas

- Monaco.

Report Error

View Answer Report Error Discuss

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

2 2382