Questions

Q:

What time of year do squirrels build nests?

A) summer B) winter
C) rainy D) monsoon
 
Answer & Explanation Answer: A) summer

Explanation:

What_time_of_year_do_squirrels_build_nests1538028815.jpg image

Squirrels build their nests in summer season as the sticks with what they bulit are dried and are less weight and the nests will be used for the rainy season.

Report Error

View Answer Report Error Discuss

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

4 2360
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 2360
Q:

What is FtDisk?

Answer

It is a fault tolerance disk driver for Windows NT.

Report Error

View answer Workspace Report Error Discuss

1 2360
Q:

Type 1 diabetes is more common than type 2 ?

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

Type 2 diabetes is the most common form of diabetes.


 



  • If you have type 1 diabetes your body does not release insulin.


 



  • If you have type 2 diabetes your body does not use insulin properly.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2359
Q:

Which of the following statements is most accurate regarding infection with parvovirus B19?

A) Parvovirus B19 causes severe anemia because it preferentially infects erythrocyte precursors B) Parvovirus B19 can cause hydrops fetalis via transplacental infection of a fetus in a seropositive mother
C) Parvovirus B19 can be diagnosed by detection of viral RNA using PCR or hybridization assays D) Parvovirus B19 replicates in the host cell nucleus utilizing a virally encoded DNA polymerase to create a double- stranded DNA intermediate
 
Answer & Explanation Answer: A) Parvovirus B19 causes severe anemia because it preferentially infects erythrocyte precursors

Explanation:

Parvovirus B19 causes severe anemia because it preferentially infects erythrocyte precursors.

 

a. Parvovirus B19 binds preferentially to the erythrocyte blood group P antigen on erythroid precursor cells.

Answers B, C, D are incorrect:

b. after entry the single-stranded viral DNA genome is transported to the cell nucleus where the host DNA polymerase synthesizes the complimentary DNA strand.

c. Parvovirus B19 infection can be diagnosed by direct detection of viral DNA not RNA.

d. the fetus of a seropositive mother is protected from infection by maternal circulating antibodies.

Report Error

View Answer Report Error Discuss

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

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

Which of the following has the shortest wavelength?

A) Gamma rays B) Radio waves
C) Microwaves D) Infrared rays
 
Answer & Explanation Answer: A) Gamma rays

Explanation:

Gamma rays has the shortest wavelength and radio waves has the longest wavelength.

Report Error

View Answer Report Error Discuss

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

2 2357
Q:

All phosphorus atoms have the same

A) Mass number B) Number of neutrons plus the number of electrons
C) Atomic number D) Number of neutrons plus the number of protons
 
Answer & Explanation Answer: C) Atomic number

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

3 2357