Questions

Q:

Gamma rays are emanations that have

A) charge but no mass B) neither mass nor charge
C) both mass and charge D) mass but no charge
 
Answer & Explanation Answer: B) neither mass nor charge

Explanation:

A gamma ray or gamma radiation, is a penetrating electromagnetic radiation arising from the radioactive decay of atomic nuclei. It consists of the shortest wavelength electromagnetic waves and so imparts the highest photon energy.

Gamma rays are emanations that have neither mass nor charge.

Report Error

View Answer Report Error Discuss

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

4 2366
Q:

What is FtDisk?

Answer

It is a fault tolerance disk driver for Windows NT.

Report Error

View answer Workspace Report Error Discuss

1 2366
Q:

Improve the bracketed part of the sentence.
I (have done) my exercises when keshav came to see me.

A) had done B) done
C) doing D) No improvement
 
Answer & Explanation Answer: A) had done

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2366
Q:

Festival of Nuakhai was recently celebrated in

A) Telangana B) Odisha
C) Goa D) Maharastra
 
Answer & Explanation Answer: B) Odisha

Explanation:

Nuakhai or Nuankhai is an agricultural festival mainly observed by people of Odisha and Chhattisgarh in India. Nuakhai is observed to welcome the new rice of the season.

Report Error

View Answer Report Error Discuss

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

32 2365
Q:

A feature of catabolic reactions is that they

A) occur only in mitochondria B) occur only during loss of body weight
C) involve release of energy D) involve consumption of energy
 
Answer & Explanation Answer: C) involve release of energy

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2365
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 2365
Q:

The International Human Rights Convention adopted by the United Nations in 1990 relates to

A) Children B) Dasabled
C) Stateless Persons D) Migrant workers
 
Answer & Explanation Answer: A) Children

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2365
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